-
Notifications
You must be signed in to change notification settings - Fork 9.2k
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: Properly handle ICMP code and type with IPv6 ICMP (protocol 58) #6264
Conversation
…6 ICMP (protocol 58) Previously: ``` --- FAIL: TestAccAWSNetworkAcl_ipv6ICMPRules (12.17s) testing.go:538: Step 0 error: Error applying: 1 error occurred: * aws_network_acl.test: 1 error occurred: * aws_network_acl.test: Error creating ingress entry: MissingParameter: The request must contain the parameter icmpTypeCode.type status code: 400, request id: 9551aec6-d3cf-435f-a35d-0d60b8fd2a69 ``` Output from acceptance testing: ``` --- PASS: TestAccAWSNetworkAcl_ipv6ICMPRules (17.51s) ```
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.
one minor 🤔 but this otherwise LGTM 👍
@@ -43,7 +43,7 @@ func expandNetworkAclEntries(configured []interface{}, entryType string) ([]*ec2 | |||
} | |||
|
|||
// Specify additional required fields for ICMP | |||
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.
IMO this wants a comment/constant explaining what 1 and 58 represent
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 created a technical debt issue for this: #6302
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 #6262
Changes proposed in this pull request:
protocol
58 to propagate ICMP code and type configurationPreviously:
Output from acceptance testing: