File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 10
10
output out_security_group_ids
11
11
{
12
12
description = " One element list with ID of either the default security group or the new one."
13
- value = [ " ${ var . in_use_default ? aws_default_security_group . default . id : aws_security_group . new . id } " ]
13
+ value = [ " ${ var . in_use_default ? aws_default_security_group . default . * . id : aws_security_group . new . * . id } " ]
14
14
}
15
15
16
16
@@ -21,5 +21,5 @@ output out_security_group_ids
21
21
output out_security_group_id
22
22
{
23
23
description = " The string ID of either the default security group or the just created new one."
24
- value = " ${ var . in_use_default ? aws_default_security_group . default . id : aws_security_group . new . id } "
24
+ value = " ${ var . in_use_default ? aws_default_security_group . default . * . id : aws_security_group . new . * . id } "
25
25
}
Original file line number Diff line number Diff line change 11
11
module vpc- subnets
12
12
{
13
13
source = " github.com/devops-ip/terraform-aws-vpc-subnets"
14
- in_vpc_cidr = " 10.123.45 .0/16"
14
+ in_vpc_cidr = " 10.123.0 .0/16"
15
15
in_ecosystem = " ${ local . ecosystem_id } "
16
16
}
17
17
You can’t perform that action at this time.
0 commit comments