Skip to content

Commit

Permalink
fix: aws_default_security_group was always dirty when manage_default_…
Browse files Browse the repository at this point in the history
…security_group was set (#591)
  • Loading branch information
schollii authored Feb 22, 2021
1 parent ada814d commit 0027771
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/complete-vpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ module "vpc" {

# Default security group - ingress/egress rules cleared to deny all
manage_default_security_group = true
default_security_group_ingress = [{}]
default_security_group_egress = [{}]
default_security_group_ingress = []
default_security_group_egress = []

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

0 comments on commit 0027771

Please sign in to comment.