You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -316,6 +316,10 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
316
316
| default\_network\_acl\_ingress | List of maps of ingress rules to set on the Default Network ACL |`list(map(string))`| <pre>[<br> {<br> "action": "allow",<br> "cidr_block": "0.0.0.0/0",<br> "from_port": 0,<br> "protocol": "-1",<br> "rule_no": 100,<br> "to_port": 0<br> },<br> {<br> "action": "allow",<br> "from_port": 0,<br> "ipv6_cidr_block": "::/0",<br> "protocol": "-1",<br> "rule_no": 101,<br> "to_port": 0<br> }<br>]</pre> | no |
317
317
| default\_network\_acl\_name | Name to be used on the Default Network ACL |`string`|`""`| no |
318
318
| default\_network\_acl\_tags | Additional tags for the Default Network ACL |`map(string)`|`{}`| no |
319
+
| default\_security\_group\_egress | List of maps of egress rules to set on the default security group |`list(map(string))`|`null`| no |
320
+
| default\_security\_group\_ingress | List of maps of ingress rules to set on the default security group |`list(map(string))`|`null`| no |
321
+
| default\_security\_group\_name | Name to be used on the default security group |`string`|`"default"`| no |
322
+
| default\_security\_group\_tags | Additional tags for the default security group |`map(string)`|`{}`| no |
319
323
| default\_vpc\_enable\_classiclink | Should be true to enable ClassicLink in the Default VPC |`bool`|`false`| no |
320
324
| default\_vpc\_enable\_dns\_hostnames | Should be true to enable DNS hostnames in the Default VPC |`bool`|`false`| no |
321
325
| default\_vpc\_enable\_dns\_support | Should be true to enable DNS support in the Default VPC |`bool`|`true`| no |
@@ -496,6 +500,7 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
496
500
| logs\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for CloudWatch Logs endpoint |`list(string)`|`[]`| no |
497
501
| logs\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for CloudWatch Logs endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used. |`list(string)`|`[]`| no |
498
502
| manage\_default\_network\_acl | Should be true to adopt and manage Default Network ACL |`bool`|`false`| no |
503
+
| manage\_default\_security\_group | Should be true to adopt and manage default security group |`bool`|`false`| no |
499
504
| manage\_default\_vpc | Should be true to adopt and manage Default VPC |`bool`|`false`| no |
500
505
| map\_public\_ip\_on\_launch | Should be false if you do not want to auto-assign public IP on launch |`bool`|`true`| no |
501
506
| monitoring\_endpoint\_private\_dns\_enabled | Whether or not to associate a private hosted zone with the specified VPC for CloudWatch Monitoring endpoint |`bool`|`false`| no |
0 commit comments