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

resource/aws_network_acl_rule: Properly handle ICMP code and type with IPv6 ICMP (protocol 58) #6263

Merged
merged 1 commit into from
Oct 30, 2018

Conversation

bflad
Copy link
Contributor

@bflad bflad commented Oct 25, 2018

Fixes #4737

Changes proposed in this pull request:

  • Allow protocol 58 to propagate ICMP code and type configuration

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)

…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)
```
@bflad bflad added bug Addresses a defect in current functionality. service/ec2 Issues and PRs that pertain to the ec2 service. labels Oct 25, 2018
@ghost ghost added size/S Managed by automation to categorize the size of a PR. tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure. labels Oct 25, 2018
Copy link
Contributor

@tombuildsstuff tombuildsstuff left a 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 {
Copy link
Contributor

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

Copy link
Contributor Author

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". 😄

@bflad bflad added this to the v1.42.0 milestone Oct 30, 2018
@bflad bflad merged commit 7e6baa7 into master Oct 30, 2018
@bflad bflad deleted the b-aws_network_acl_rule-58 branch October 30, 2018 13:50
bflad added a commit that referenced this pull request Oct 30, 2018
@bflad
Copy link
Contributor Author

bflad commented Nov 1, 2018

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.

@ghost
Copy link

ghost commented Apr 2, 2020

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!

@ghost ghost locked and limited conversation to collaborators Apr 2, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Addresses a defect in current functionality. service/ec2 Issues and PRs that pertain to the ec2 service. size/S Managed by automation to categorize the size of a PR. tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

aws_network_acl_rule icmp for IPv6 not working, icmpTypeCode missing
2 participants