-
Notifications
You must be signed in to change notification settings - Fork 9.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement AcceptTransitGatewayVpcAttachment API call #8125
Comments
Suggested syntax for a new # Creator
resource "aws_ec2_transit_gateway_vpc_attachment" "example" {
...
}
# Accepter
resource "aws_ec2_transit_gateway_vpc_attachment_accepter" "example" {
provider = "aws.alternate"
transit_gateway_attachment_id = "${aws_ec2_transit_gateway_vpc_attachment.example.id}"
} The exported attributes would be the attributes of the
|
Hi folks 👋 A new |
This has been released in version 2.13.0 of the Terraform AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks! |
This issue was originally opened by @KundK as hashicorp/terraform#20869. It was migrated here as a result of the provider split. The original body of the issue is below.
Current Terraform Version
Use-cases
When creating a aws_ec2_transit_gateway_vpc_attachment with a shared TGW from another account the attachment goes into 'pendingAcceptance ' state.
It has to be accepted manually on the console or by the AcceptTransitGatewayVpcAttachment API call.
It seems like that API call doesn't have a provider resource.
Attempted Solutions
Proposal
Create data source and resource similar to 'aws_dx_hosted_public_virtual_interface_accepter'
References
https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_AcceptTransitGatewayVpcAttachment.html
The text was updated successfully, but these errors were encountered: