Skip to content

Commit a855a66

Browse files
committed
still grappling with terraform boolean behaviour.
1 parent b8185a9 commit a855a66

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

test-security.group/security.group-test.tf

+12-5
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,18 @@ module last-stable-release-test-0
3131

3232
module security-group-test-1
3333
{
34-
source = "github.com/devops-ip/terraform-aws-security-group"
35-
version = "v0.1.0001"
36-
in_vpc_id = "${ module.vpc-subnets.out_vpc_id }"
37-
in_ecosystem = "${ local.ecosystem_id }-01"
34+
source = "github.com/devops-ip/terraform-aws-security-group"
35+
in_vpc_id = "${ module.vpc-subnets.out_vpc_id }"
36+
in_use_default = "true"
37+
in_ecosystem = "${ local.ecosystem_id }-01"
38+
}
39+
40+
module security-group-test-2
41+
{
42+
source = "github.com/devops-ip/terraform-aws-security-group"
43+
in_vpc_id = "${ module.vpc-subnets.out_vpc_id }"
44+
in_use_default = "false"
45+
in_ecosystem = "${ local.ecosystem_id }-02"
3846
}
3947

4048
/*
@@ -111,7 +119,6 @@ module vpc-subnets-test-9
111119
112120
*/
113121

114-
115122
output subnet_ids_1{ value = "${module.vpc-subnets.out_subnet_ids}" }
116123
output private_subnet_ids_1{ value = "${module.vpc-subnets.out_private_subnet_ids}" }
117124
output public_subnet_ids_1{ value = "${module.vpc-subnets.out_public_subnet_ids}" }

0 commit comments

Comments
 (0)