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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Enhancement]: Security Group Referencing on Transit Gateway #39508

Closed
ddericco opened this issue Sep 26, 2024 · 3 comments
Closed

[Enhancement]: Security Group Referencing on Transit Gateway #39508

ddericco opened this issue Sep 26, 2024 · 3 comments
Labels
enhancement Requests to existing resources that expand the functionality or scope. service/transitgateway Issues and PRs that pertain to the transitgateway service.

Comments

@ddericco
Copy link
Contributor

Description

Security Group Referencing allows customers to specify other SGs as references, or matching criterion in inbound security rules to allow instance-to-instance traffic. On 2024-09-25 AWS announced support for SG references between VPCs connected via Transit Gateway.

This feature must be enabled on the Transit Gateway as well as the VPC attachments that will be performing the referencing. See the launch blog post for details.

Affected Resource(s) and/or Data Source(s)

  • aws_ec2_transit_gateway
  • aws_ec2_transit_gateway_vpc_attachment

Potential Terraform Configuration

resource "aws_ec2_transit_gateway" "example" {
  description = "example"
  security_group_referencing_support = "enable"
}

resource "aws_ec2_transit_gateway_vpc_attachment" "example" {
  subnet_ids         = [aws_subnet.example.id]
  transit_gateway_id = aws_ec2_transit_gateway.example.id
  vpc_id             = aws_vpc.example.id
  security_group_referencing_support = "enable"
}

References

Would you like to implement a fix?

Yes

@ddericco ddericco added the enhancement Requests to existing resources that expand the functionality or scope. label Sep 26, 2024
Copy link

Community Note

Voting for Prioritization

  • Please vote on this issue by adding a 👍 reaction to the original post to help the community and maintainers prioritize this request.
  • Please see our prioritization guide for information on how we prioritize.
  • 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.

Volunteering to Work on This Issue

  • If you are interested in working on this issue, please leave a comment.
  • If this would be your first contribution, please review the contribution guide.

@github-actions github-actions bot added service/transitgateway Issues and PRs that pertain to the transitgateway service. needs-triage Waiting for first response or review from a maintainer. labels Sep 26, 2024
@acwwat
Copy link
Contributor

acwwat commented Sep 27, 2024

This has been resolved by #34542.

@ewbankkit ewbankkit removed the needs-triage Waiting for first response or review from a maintainer. label Sep 27, 2024
Copy link

Warning

This issue has been closed, meaning that any additional comments are hard for our team to see. Please assume that the maintainers will not see them.

Ongoing conversations amongst community members are welcome, however, the issue will be locked after 30 days. Moving conversations to another venue, such as the AWS Provider forum, is recommended. If you have additional concerns, please open a new issue, referencing this one where needed.

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

3 participants