diff --git a/examples/basic/basic/main.tf b/examples/basic/basic/main.tf index 9db7152..a3393c4 100644 --- a/examples/basic/basic/main.tf +++ b/examples/basic/basic/main.tf @@ -28,7 +28,8 @@ module "TestBasic" { depends_on = [ module.aws_access, ] - source = "../../../" + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/os/rhel8/main.tf b/examples/os/rhel8/main.tf index 17b8290..f363089 100644 --- a/examples/os/rhel8/main.tf +++ b/examples/os/rhel8/main.tf @@ -29,7 +29,8 @@ module "TestRhel8" { depends_on = [ module.aws_access, ] - source = "../../../" + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/os/rhel8cis/main.tf b/examples/os/rhel8cis/main.tf index a46caac..7bfd628 100644 --- a/examples/os/rhel8cis/main.tf +++ b/examples/os/rhel8cis/main.tf @@ -29,7 +29,8 @@ module "TestRhel8Cis" { depends_on = [ module.aws_access, ] - source = "../../../" + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/os/rhel9/main.tf b/examples/os/rhel9/main.tf index e2c44f4..a885717 100644 --- a/examples/os/rhel9/main.tf +++ b/examples/os/rhel9/main.tf @@ -29,7 +29,8 @@ module "TestRhel8" { depends_on = [ module.aws_access, ] - source = "../../../" + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/os/rocky8/main.tf b/examples/os/rocky8/main.tf index 5e09663..ebdd52b 100644 --- a/examples/os/rocky8/main.tf +++ b/examples/os/rocky8/main.tf @@ -30,7 +30,8 @@ module "TestRocky8" { depends_on = [ module.aws_access, ] - source = "../../../" + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/os/sles15/main.tf b/examples/os/sles15/main.tf index 1964518..83e0a59 100644 --- a/examples/os/sles15/main.tf +++ b/examples/os/sles15/main.tf @@ -29,7 +29,8 @@ module "TestSles15" { depends_on = [ module.aws_access, ] - source = "../../../" + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/os/sles15cis/main.tf b/examples/os/sles15cis/main.tf index 5eeb3a0..2980463 100644 --- a/examples/os/sles15cis/main.tf +++ b/examples/os/sles15cis/main.tf @@ -29,7 +29,8 @@ module "TestSles15Cis" { depends_on = [ module.aws_access, ] - source = "../../../" + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/os/ubuntu20/main.tf b/examples/os/ubuntu20/main.tf index 1b24a11..16fce34 100644 --- a/examples/os/ubuntu20/main.tf +++ b/examples/os/ubuntu20/main.tf @@ -28,7 +28,8 @@ module "TestUbuntu20" { depends_on = [ module.aws_access, ] - source = "../../../" + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/os/ubuntu22/main.tf b/examples/os/ubuntu22/main.tf index 7872db2..00628b7 100644 --- a/examples/os/ubuntu22/main.tf +++ b/examples/os/ubuntu22/main.tf @@ -29,7 +29,8 @@ module "TestUbuntu22" { depends_on = [ module.aws_access, ] - source = "../../../" + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/overrides/select_image/main.tf b/examples/overrides/select_image/main.tf index dd68700..3a1cc44 100644 --- a/examples/overrides/select_image/main.tf +++ b/examples/overrides/select_image/main.tf @@ -1,4 +1,5 @@ module "TestSelectImage" { - source = "../../../" - image = "sles-15" + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version + image = "sles-15" } diff --git a/examples/region/useast1/main.tf b/examples/region/useast1/main.tf index 91401e4..11af599 100644 --- a/examples/region/useast1/main.tf +++ b/examples/region/useast1/main.tf @@ -29,8 +29,9 @@ module "aws_access" { # aws_access returns a security group object from the aws api, but the name attribute isn't the same as the Name tag # this is an rare example of when the name attribute is different than the Name tag in AWS module "TestUseast1" { - depends_on = [module.aws_access] - source = "../../../" + depends_on = [module.aws_access] + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/region/useast2/main.tf b/examples/region/useast2/main.tf index 7765d1e..8bbbaf9 100644 --- a/examples/region/useast2/main.tf +++ b/examples/region/useast2/main.tf @@ -29,8 +29,9 @@ module "aws_access" { # aws_access returns a security group object from the aws api, but the name attribute isn't the same as the Name tag # this is an rare example of when the name attribute is different than the Name tag module "TestUseast2" { - depends_on = [module.aws_access] - source = "../../../" + depends_on = [module.aws_access] + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/region/uswest1/main.tf b/examples/region/uswest1/main.tf index 3acbe1f..60f81dd 100644 --- a/examples/region/uswest1/main.tf +++ b/examples/region/uswest1/main.tf @@ -29,8 +29,9 @@ module "aws_access" { # aws_access returns a security group object from the aws api, but the name attribute isn't the same as the Name tag # this is an rare example of when the name attribute is different than the Name tag module "TestUswest1" { - depends_on = [module.aws_access] - source = "../../../" + depends_on = [module.aws_access] + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/region/uswest2/main.tf b/examples/region/uswest2/main.tf index f7cf8fe..d78171d 100644 --- a/examples/region/uswest2/main.tf +++ b/examples/region/uswest2/main.tf @@ -29,8 +29,9 @@ module "aws_access" { # aws_access returns a security group object from the aws api, but the name attribute isn't the same as the Name tag # this is an rare example of when the name attribute is different than the Name tag module "TestUswest2" { - depends_on = [module.aws_access] - source = "../../../" + depends_on = [module.aws_access] + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/securitygroups/egress/main.tf b/examples/securitygroups/egress/main.tf index 3e64744..d94019d 100644 --- a/examples/securitygroups/egress/main.tf +++ b/examples/securitygroups/egress/main.tf @@ -27,7 +27,8 @@ module "TestEgress" { depends_on = [ module.aws_access, ] - source = "../../../" + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/securitygroups/internal/main.tf b/examples/securitygroups/internal/main.tf index 69c6c08..959ddd9 100644 --- a/examples/securitygroups/internal/main.tf +++ b/examples/securitygroups/internal/main.tf @@ -27,7 +27,8 @@ module "TestInternal" { depends_on = [ module.aws_access, ] - source = "../../../" + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/securitygroups/public/main.tf b/examples/securitygroups/public/main.tf index 923127f..bd62ce1 100644 --- a/examples/securitygroups/public/main.tf +++ b/examples/securitygroups/public/main.tf @@ -27,7 +27,8 @@ module "TestPublic" { depends_on = [ module.aws_access, ] - source = "../../../" + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/securitygroups/specific/main.tf b/examples/securitygroups/specific/main.tf index 010235f..f1b1c2d 100644 --- a/examples/securitygroups/specific/main.tf +++ b/examples/securitygroups/specific/main.tf @@ -27,7 +27,8 @@ module "TestSpecific" { depends_on = [ module.aws_access, ] - source = "../../../" + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/size/large/main.tf b/examples/size/large/main.tf index 40895bd..e8a2754 100644 --- a/examples/size/large/main.tf +++ b/examples/size/large/main.tf @@ -27,8 +27,9 @@ module "aws_access" { # aws_access returns a security group object from the aws api, but the name attribute isn't the same as the Name tag # this is an rare example of when the name attribute is different than the Name tag module "TestLarge" { - depends_on = [module.aws_access] - source = "../../../" + depends_on = [module.aws_access] + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/size/medium/main.tf b/examples/size/medium/main.tf index f79e227..265f67e 100644 --- a/examples/size/medium/main.tf +++ b/examples/size/medium/main.tf @@ -27,8 +27,9 @@ module "aws_access" { # aws_access returns a security group object from the aws api, but the name attribute isn't the same as the Name tag # this is an rare example of when the name attribute is different than the Name tag module "TestMedium" { - depends_on = [module.aws_access] - source = "../../../" + depends_on = [module.aws_access] + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/size/small/main.tf b/examples/size/small/main.tf index ebf10f6..30fe7e5 100644 --- a/examples/size/small/main.tf +++ b/examples/size/small/main.tf @@ -26,8 +26,9 @@ module "aws_access" { # aws_access returns a security group object from the aws api, but the name attribute isn't the same as the Name tag # this is an rare example of when the name attribute is different than the Name tag module "TestSmall" { - depends_on = [module.aws_access] - source = "../../../" + depends_on = [module.aws_access] + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/size/xl/main.tf b/examples/size/xl/main.tf index aa405f4..24439ce 100644 --- a/examples/size/xl/main.tf +++ b/examples/size/xl/main.tf @@ -26,8 +26,9 @@ module "aws_access" { # aws_access returns a security group object from the aws api, but the name attribute isn't the same as the Name tag # this is an rare example of when the name attribute is different than the Name tag module "TestXl" { - depends_on = [module.aws_access] - source = "../../../" + depends_on = [module.aws_access] + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name diff --git a/examples/size/xxl/main.tf b/examples/size/xxl/main.tf index b2c34ee..9cf777f 100644 --- a/examples/size/xxl/main.tf +++ b/examples/size/xxl/main.tf @@ -26,8 +26,9 @@ module "aws_access" { # aws_access returns a security group object from the aws api, but the name attribute isn't the same as the Name tag # this is an rare example of when the name attribute is different than the Name tag module "TestXxl" { - depends_on = [module.aws_access] - source = "../../../" + depends_on = [module.aws_access] + source = "../../../" # change this to "rancher/server/aws" per https://registry.terraform.io/modules/rancher/server/aws/latest + # version = "v0.0.15" # when using this example you will need to set the version image = local.image owner = local.email name = local.name