File tree Expand file tree Collapse file tree 1 file changed +11
-9
lines changed
Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,15 @@ module "vpc" {
1414module "security_group" {
1515 source = " ./../"
1616
17- name = " security-group"
18- environment = " test"
19- label_order = [" name" , " environment" ]
20- vpc_id = module. vpc . vpc_id
21- protocol = " tcp"
22- description = " Instance default security group (only egress access is allowed)."
23- allowed_ip = [" 172.16.0.0/16" , " 10.0.0.0/16" ]
24- allowed_ipv6 = [" 2405:201:5e00:3684:cd17:9397:5734:a167/128" ]
25- allowed_ports = [22 , 27017 ]
17+ name = " security-group"
18+ environment = " test"
19+ label_order = [" name" , " environment" ]
20+
21+ enable_security_group = true
22+ vpc_id = module. vpc . vpc_id
23+ protocol = " tcp"
24+ description = " Instance default security group (only egress access is allowed)."
25+ allowed_ip = [" 172.16.0.0/16" , " 10.0.0.0/16" ]
26+ allowed_ipv6 = [" 2405:201:5e00:3684:cd17:9397:5734:a167/128" ]
27+ allowed_ports = [22 , 27017 ]
2628}
You can’t perform that action at this time.
0 commit comments