-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
resource/aws_network_acl_rule: Properly handle ICMP code and type with IPv6 ICMP (protocol 58) #6263
Conversation
…h IPv6 ICMP (protocol 58) Previously: ``` --- FAIL: TestAccAWSNetworkAclRule_ipv6ICMP (12.47s) testing.go:538: Step 0 error: Error applying: 1 error occurred: * aws_network_acl_rule.test: 1 error occurred: * aws_network_acl_rule.test: Error Creating Network Acl Rule: MissingParameter: The request must contain the parameter icmpTypeCode.type status code: 400, request id: a0e8e287-af99-4da9-9b5f-e641e41d3fe7 ``` Output from acceptance testing: ``` --- PASS: TestAccAWSNetworkAclRule_ipv6ICMP (24.21s) ```
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 👍
@@ -139,7 +139,7 @@ func resourceAwsNetworkAclRuleCreate(d *schema.ResourceData, meta interface{}) e | |||
|
|||
// Specify additional required fields for ICMP. For the list | |||
// of ICMP codes and types, see: https://www.iana.org/assignments/icmp-parameters/icmp-parameters.xhtml | |||
if p == 1 { | |||
if p == 1 || p == 58 { |
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.
whilst this is clear in that there's a test for it - IMO we want a comment/constant to explain what these are so it doesn't require a lookup
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.
I hope #6302 covers this here as well. Probably best to solve this "globally". 😄
This has been released in version 1.42.0 of the 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! |
Fixes #4737
Changes proposed in this pull request:
protocol
58 to propagate ICMP code and type configurationPreviously:
Output from acceptance testing: