github.com/lymingtonprecision/terraform@v0.9.9-0.20170613092852-62acef9611a9/website/source/docs/providers/aws/r/vpn_gateway_route_propagation.html.markdown (about)

     1  ---
     2  layout: "aws"
     3  page_title: "AWS: aws_vpn_gateway_route_propagation"
     4  sidebar_current: "docs-aws-resource-vpn-gateway-route-propagation"
     5  description: |-
     6    Requests automatic route propagation between a VPN gateway and a route table.
     7  ---
     8  
     9  # aws_vpn_gateway_route_propagation
    10  
    11  Requests automatic route propagation between a VPN gateway and a route table.
    12  
    13  ~> **Note:** This resource should not be used with a route table that has
    14  the `propagating_vgws` argument set. If that argument is set, any route
    15  propagation not explicitly listed in its value will be removed.
    16  
    17  ## Example Usage
    18  
    19  ```hcl
    20  resource "aws_vpn_gateway_route_propagation" "example" {
    21    vpn_gateway_id = "${aws_vpn_gateway.example.id}"
    22    route_table_id = "${aws_route_table.example.id}"
    23  }
    24  ```
    25  
    26  ## Argument Reference
    27  
    28  The following arguments are required:
    29  
    30  * `vpn_gateway_id` - The id of the `aws_vpn_gateway` to propagate routes from.
    31  * `route_table_id` - The id of the `aws_route_table` to propagate routes into.
    32  
    33  ## Attributes Reference
    34  
    35  This resource does not export any additional attributes.