Skip to content
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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

New datasource: aws_ec2_transit_gateway_vpn_attachments (plural) #25744

Open
mkielar opened this issue Jul 8, 2022 · 1 comment
Open

New datasource: aws_ec2_transit_gateway_vpn_attachments (plural) #25744

mkielar opened this issue Jul 8, 2022 · 1 comment
Labels
enhancement Requests to existing resources that expand the functionality or scope. service/transitgateway Issues and PRs that pertain to the transitgateway service.

Comments

@mkielar
Copy link
Contributor

mkielar commented Jul 8, 2022

Community Note

  • Please vote on this issue by adding a 馃憤 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

Similar to aws_ec2_transit_gateway_vpc_attachments introduced in #11880, please add aws_ec2_transit_gateway_vpn_attachments to allow fetching multiple TGW VPN Attachments.

New or Affected Resource(s)

  • aws_ec2_transit_gateway_vpn_attachments

Potential Terraform Configuration

data "aws_ec2_transit_gateway_vpn_attachments" "attachments" {
  filter {
    name = "state"
    values = [
      "available"
    ]
  }
  filter {
    name = "transit-gateway-id"
    values = [
      var.tgw_id
    ]
  }
}

References

@mkielar mkielar added the enhancement Requests to existing resources that expand the functionality or scope. label Jul 8, 2022
@github-actions github-actions bot added needs-triage Waiting for first response or review from a maintainer. service/transitgateway Issues and PRs that pertain to the transitgateway service. labels Jul 8, 2022
@mkielar
Copy link
Contributor Author

mkielar commented Jul 8, 2022

Could potentially be closed in favour of #25745.

@justinretzolk justinretzolk removed the needs-triage Waiting for first response or review from a maintainer. label Jul 8, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Requests to existing resources that expand the functionality or scope. service/transitgateway Issues and PRs that pertain to the transitgateway service.
Projects
None yet
Development

No branches or pull requests

2 participants