-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
providers/aws: docs for aws_main_route_table_association
- Loading branch information
Showing
3 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
website/source/docs/providers/aws/r/main_route_table_assoc.html.markdown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
layout: "aws" | ||
page_title: "AWS: aws_main_route_table_association" | ||
sidebar_current: "docs-aws-resource-main-route-table-assoc" | ||
description: |- | ||
Provides a resource for managing the main routing table of a VPC. | ||
--- | ||
|
||
# aws\_main\_route\_table\_<wbr>association | ||
|
||
Provides a resource for managing the main routing table of a VPC. | ||
|
||
## Example Usage | ||
|
||
``` | ||
resource "aws_main_route_table_association" "a" { | ||
vpc_id = "${aws_vpc.foo.id}" | ||
route_table_id = "${aws_route_table.bar.id}" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `vpc_id` - (Required) The ID of the VPC whose main route table should be set | ||
* `route_table_id` - (Required) The ID of the Route Table to set as the new | ||
main route table for the target VPC | ||
|
||
## Attributes Reference | ||
|
||
The following attributes are exported: | ||
|
||
* `id` - The ID of the Route Table Association | ||
* `original_route_table_id` - Used internally, see __Notes__ below | ||
|
||
## Notes | ||
|
||
On VPC creation, the AWS API always creates an initial Main Route Table. This | ||
resource records the ID of that Route Table under `original_route_table_id`. | ||
The "Delete" action for a `main_route_table_association` consists of resetting | ||
this original table as the Main Route Table for the VPC. You'll see this | ||
additional Route Table in the AWS console; it must remain intact in order for | ||
the `main_route_table_association` delete to work properly. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters