-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Closed
Description
I'm having trouble using the following with this module:
resource "aws_vpn_gateway_route_propagation" "SpokeA" {
count = "${length(module.spokeA.private_route_table_ids)}"
vpn_gateway_id = "${module.spokeA.vgw_id}"
route_table_id = "${element(module.spokeA.private_route_table_ids, count.index)}"
}
The problem I'm having is every other time I run Terraform the propagation is turned off and then on again.
I noticed private_propagating_vgws in the variables and main.tf of this module but am a bit puzzled as to how to use this parameter in combination with enable_vpn_gateway="true".
Can someone provide an example of the correct way to enable route propagation on the route tables associated with the VPC created by this module?
Metadata
Metadata
Assignees
Labels
No labels