-
-
Notifications
You must be signed in to change notification settings - Fork 227
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
feat: Add support for security group referencing to transit-gateway m… #133
base: master
Are you sure you want to change the base?
feat: Add support for security group referencing to transit-gateway m… #133
Conversation
…odule AWS recently introduced security group referencing for Transit Gateway VPC attachments. This feature was available in the standalone resource `aws_ec2_transit_gateway_vpc_attachment` but not in the transit-gateway module. Added support for it in the module.
dda1f3e
to
34434c4
Compare
Would love to see this too! One comment, this new setting exists at the Transit Gateway level too, not just attachments. So the module should also have a new variable for whether to enable it on the TGW. See https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ec2_transit_gateway |
@jhenry82 Thank you for pointing that out. I've updated the code to include SG referencing support at the TGW level as well. |
@jhenry82 Can you please review this? |
I am not a maintainer of this module, my review wouldn't mean much :) I just use the module and came here to see if the feature had been added, and saw your MR. Hopefully it is able to be integrated soon. |
@antonbabenko @bryantbiggs Can you please review this PR? |
We also need this functionality. |
BUMP we need this. |
Can we get this feature released? |
…odule
Added support for security_group_referencing_support in the transit-gateway module.
Description
Motivation and Context
AWS recently introduced [HERE] security group referencing for Transit Gateway VPC attachments. This feature was available in the standalone resource
aws_ec2_transit_gateway_vpc_attachment
but not in thetransit-gateway
module. Added support for it in the module.Breaking Changes
no
How Has This Been Tested?
examples/*
to demonstrate and validate my change(s)examples/*
projectspre-commit run -a
on my pull request