Skip to content

Commit

Permalink
Update main.tf
Browse files Browse the repository at this point in the history
Co-authored-by: Anton Babenko <[email protected]>
  • Loading branch information
sebastianczech and antonbabenko authored Jan 27, 2025
1 parent 593f755 commit 73a3c2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ resource "aws_vpc_ipv4_cidr_block_association" "this" {
resource "aws_vpc_block_public_access_options" "this" {
count = local.create_vpc && length(keys(var.vpc_block_public_access_options)) ? 1 : 0

internet_gateway_block_mode = var.internet_gateway_block_mode
internet_gateway_block_mode = try(var.vpc_block_public_access_options["internet_gateway_block_mode"], null)
}

resource "aws_vpc_block_public_access_exclusion" "this" {
Expand Down

0 comments on commit 73a3c2e

Please sign in to comment.