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 (terraform-aws-modules#591)
  • Loading branch information
schollii authored and harrythebot committed May 11, 2022
1 parent 80618a5 commit 86e8cd9
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 86e8cd9

Please sign in to comment.