This repository has been archived by the owner on Aug 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: direct connect associations and attachments (#103)
* feat: direct connect associations and attachments Co-authored-by: Ron <[email protected]>
- Loading branch information
Showing
7 changed files
with
290 additions
and
0 deletions.
There are no files selected for viewing
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
# Table: aws_directconnect_gateway_associations | ||
Information about the association between an Direct Connect Gateway and either a Virtual Private Gateway, or Transit Gateway | ||
## Columns | ||
| Name | Type | Description | | ||
| ------------- | ------------- | ----- | | ||
|directconnect_gateway_id|uuid|Unique ID of aws_directconnect_gateways table (FK)| | ||
|allowed_prefixes_to_direct_connect_gateway|text[]|The Amazon VPC prefixes to advertise to the Direct Connect gateway.| | ||
|associated_gateway_id|text|The ID of the associated gateway.| | ||
|associated_gateway_owner_account|text|The ID of the AWS account that owns the associated virtual private gateway or transit gateway.| | ||
|associated_gateway_region|text|The Region where the associated gateway is located.| | ||
|associated_gateway_type|text|The type of associated gateway.| | ||
|association_id|text|The ID of the Direct Connect gateway association| | ||
|association_state|text|The state of the association.| | ||
|direct_connect_gateway_owner_account|text|The ID of the AWS account that owns the associated gateway.| | ||
|state_change_error|text|The error message if the state of an object failed to advance.| | ||
|virtual_gateway_id|text|The ID of the virtual private gateway. Applies only to private virtual interfaces.| | ||
|virtual_gateway_owner_account|text|The ID of the AWS account that owns the virtual private gateway.| | ||
|resource_id|text|The ID of the Direct Connect gateway association| |
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,13 @@ | ||
|
||
# Table: aws_directconnect_gateway_attachments | ||
Information about the attachment between a Direct Connect gateway and virtual interfaces. | ||
## Columns | ||
| Name | Type | Description | | ||
| ------------- | ------------- | ----- | | ||
|directconnect_gateway_id|uuid|Unique ID of aws_directconnect_gateways table (FK)| | ||
|attachment_state|text|The state of the attachment.| | ||
|attachment_type|text|The type of attachment.| | ||
|state_change_error|text|The error message if the state of an object failed to advance.| | ||
|virtual_interface_id|text|The ID of the virtual interface.| | ||
|virtual_interface_owner_account|text|The ID of the AWS account that owns the virtual interface.| | ||
|virtual_interface_region|text|The AWS Region where the virtual interface is located.| |
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