Skip to content

Commit

Permalink
docs/resource/aws_dx_gateway_association: Minor fixes based on PR #8320
Browse files Browse the repository at this point in the history
… feedback

Reference: #8222 (review)
  • Loading branch information
bflad committed Apr 24, 2019
1 parent eeddb00 commit 84f54d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions website/docs/r/dx_gateway_association.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ resource "aws_vpc" "example" {
}
resource "aws_vpn_gateway" "example" {
vpc_id = "${aws_vpc.test.id}"
vpc_id = "${aws_vpc.example.id}"
}
resource "aws_dx_gateway_association" "example" {
Expand All @@ -47,7 +47,7 @@ resource "aws_vpc" "example" {
}
resource "aws_vpn_gateway" "example" {
vpc_id = "${aws_vpc.test.id}"
vpc_id = "${aws_vpc.example.id}"
}
resource "aws_dx_gateway_association" "example" {
Expand All @@ -67,7 +67,7 @@ The following arguments are supported:

* `dx_gateway_id` - (Required) The ID of the Direct Connect gateway.
* `vpn_gateway_id` - (Required) The ID of the VGW with which to associate the gateway.
* `allowed_prefixes` - (Optional) The Amazon VPC prefixes to advertise to the Direct Connect gateway.
* `allowed_prefixes` - (Optional) VPC prefixes (CIDRs) to advertise to the Direct Connect gateway. Defaults to the CIDR block of the VPC associated with the Virtual Gateway. To enable drift detection, must be configured.

## Attributes Reference

Expand Down

0 comments on commit 84f54d9

Please sign in to comment.