Skip to content

Commit 0027771

Browse files
authored
fix: aws_default_security_group was always dirty when manage_default_security_group was set (#591)
1 parent ada814d commit 0027771

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/complete-vpc/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ module "vpc" {
118118

119119
# Default security group - ingress/egress rules cleared to deny all
120120
manage_default_security_group = true
121-
default_security_group_ingress = [{}]
122-
default_security_group_egress = [{}]
121+
default_security_group_ingress = []
122+
default_security_group_egress = []
123123

124124
# VPC Flow Logs (Cloudwatch log group and IAM role will be created)
125125
enable_flow_log = true

0 commit comments

Comments
 (0)