File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 5
5
6
6
resource aws_security_group new
7
7
{
8
- count = " ${ var . in_use_default == false ? 1 : 0 } "
8
+ count = " ${ var . in_use_default ? 1 : 0 } "
9
9
10
10
name = " security-group-${ var . in_ecosystem } -${ module . ecosys . out_stamp } -n"
11
11
description = " This new security group ${ module . ecosys . out_history_note } "
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ module vpc-subnets
12
12
{
13
13
source = " github.com/devops-ip/terraform-aws-vpc-subnets"
14
14
in_vpc_cidr = " 10.123.0.0/16"
15
- in_ecosystem = " ${ local . ecosystem_id } "
15
+ in_ecosystem = " ${ local . ecosystem_id } "
16
16
}
17
17
18
18
module zero- param- test
@@ -33,8 +33,8 @@ module security-group-test-1
33
33
{
34
34
source = " github.com/devops-ip/terraform-aws-security-group"
35
35
version = " v0.1.0001"
36
- in_vpc_id = " ${ module . vpc-subnets . out_vpc_id } "
37
- in_ecosystem = " ${ local . ecosystem_id } -01"
36
+ in_vpc_id = " ${ module . vpc-subnets . out_vpc_id } "
37
+ in_ecosystem = " ${ local . ecosystem_id } -01"
38
38
}
39
39
40
40
/*
You can’t perform that action at this time.
0 commit comments