-
Notifications
You must be signed in to change notification settings - Fork 9.6k
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
Allow use of protocol numbers for ah and esp #8975
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSSecurityGroup_vpcProtoNumIngress -timeout 120m
=== RUN TestAccAWSSecurityGroup_vpcProtoNumIngress
--- PASS: TestAccAWSSecurityGroup_vpcProtoNumIngress (20.35s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 20.368s
Test:
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSNetworkAcl_ -timeout 120m
=== RUN TestAccAWSNetworkAcl_importBasic
--- PASS: TestAccAWSNetworkAcl_importBasic (20.20s)
=== RUN TestAccAWSNetworkAcl_EgressAndIngressRules
--- PASS: TestAccAWSNetworkAcl_EgressAndIngressRules (18.86s)
=== RUN TestAccAWSNetworkAcl_OnlyIngressRules_basic
--- PASS: TestAccAWSNetworkAcl_OnlyIngressRules_basic (23.93s)
=== RUN TestAccAWSNetworkAcl_OnlyIngressRules_update
--- PASS: TestAccAWSNetworkAcl_OnlyIngressRules_update (37.39s)
=== RUN TestAccAWSNetworkAcl_OnlyEgressRules
--- PASS: TestAccAWSNetworkAcl_OnlyEgressRules (20.27s)
=== RUN TestAccAWSNetworkAcl_SubnetChange
--- PASS: TestAccAWSNetworkAcl_SubnetChange (36.87s)
=== RUN TestAccAWSNetworkAcl_Subnets
--- PASS: TestAccAWSNetworkAcl_Subnets (42.03s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 199.580s
Test:
The same thing will apply I believe to my comment here: #6915 (comment) The |
Thanks for the ping @jrnt30 , I'll take a look at that comment/PR thread. |
That is correct in the I can take a look tonight if it's not cleared up, just really wanted to give a public service announcement :) |
@jrnt30 hey, sorry, I think I misread your first comment, so you are likely correct that any |
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 have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
It appears the aws sdk does not accept the protocol name for esp or ah. This fix allows the user to simply specify the protocol number in their security group.
This fix covers: #6888