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

[Version 2 Release] resource/aws_wafregional_byte_match_set: Remove deprecated byte_match_tuple argument #7694

Closed
bflad opened this issue Feb 24, 2019 · 2 comments · Fixed by #7718
Labels
service/waf Issues and PRs that pertain to the waf service. technical-debt Addresses areas of the codebase that need refactoring or redesign.
Milestone

Comments

@bflad
Copy link
Contributor

bflad commented Feb 24, 2019

Description

Tracking issue for https://www.terraform.io/docs/providers/aws/guides/version-2-upgrade.html#resource-aws_wafregional_byte_match_set

byte_match_tuple Argument Removal

Switch your Terraform configuration to the byte_match_tuples argument instead.

For example, given this previous configuration:

resource "aws_ecs_service" "example" {
  # ... other configuration ...

  byte_match_tuple {
    # ... other configuration ...
  }

  byte_match_tuple {
    # ... other configuration ...
  }
}

An updated configuration:

resource "aws_ecs_service" "example" {
  # ... other configuration ...

  byte_match_tuples {
    # ... other configuration ...
  }

  byte_match_tuples {
    # ... other configuration ...
  }
}
@bflad bflad added service/waf Issues and PRs that pertain to the waf service. technical-debt Addresses areas of the codebase that need refactoring or redesign. labels Feb 24, 2019
@bflad bflad added this to the v2.0.0 milestone Feb 24, 2019
bflad added a commit that referenced this issue Feb 25, 2019
…_tuple configuration block

Reference: #7694

Output from acceptance testing:

```
--- PASS: TestAccAWSWafRegionalByteMatchSet_noByteMatchTuples (16.84s)
--- PASS: TestAccAWSWafRegionalByteMatchSet_disappears (21.55s)
--- PASS: TestAccAWSWafRegionalByteMatchSet_basic (24.30s)
--- PASS: TestAccAWSWafRegionalByteMatchSet_changeByteMatchTuples (29.25s)
--- PASS: TestAccAWSWafRegionalByteMatchSet_changeNameForceNew (34.32s)
```
@bflad
Copy link
Contributor Author

bflad commented Feb 25, 2019

Pull request submitted: #7718

@ghost
Copy link

ghost commented Mar 31, 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 Mar 31, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
service/waf Issues and PRs that pertain to the waf service. technical-debt Addresses areas of the codebase that need refactoring or redesign.
Projects
None yet
1 participant