» Resource: aws_vpn_gateway_route_propagation

Requests automatic route propagation between a VPN gateway and a route table.

» Example Usage

resource "aws_vpn_gateway_route_propagation" "example" {
  vpn_gateway_id = "${aws_vpn_gateway.example.id}"
  route_table_id = "${aws_route_table.example.id}"
}

» Argument Reference

The following arguments are required:

  • vpn_gateway_id - The id of the aws_vpn_gateway to propagate routes from.
  • route_table_id - The id of the aws_route_table to propagate routes into.

» Attributes Reference

This resource does not export any additional attributes.