Skip to content

Commit

Permalink
RAM limits configurability of VPC attachment
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuru committed Sep 10, 2020
1 parent 5dea9ee commit 8487f5b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,11 @@ resource "aws_ec2_transit_gateway_vpc_attachment" "default" {
dns_support = var.vpc_attachment_dns_support
ipv6_support = var.vpc_attachment_ipv6_support
tags = module.this.tags
transit_gateway_default_route_table_association = false
transit_gateway_default_route_table_propagation = false

# These cannot be configured with Resource Access Manager shared EC2 Transit Gateways
# See https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ec2_transit_gateway_vpc_attachment
# transit_gateway_default_route_table_association = false
# transit_gateway_default_route_table_propagation = false
}

# Allow traffic from the VPC attachments to the Transit Gateway
Expand Down

0 comments on commit 8487f5b

Please sign in to comment.