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_api_gateway_integration_response: Remove deprecated response_parameters_in_json argument #7679

Closed
bflad opened this issue Feb 24, 2019 · 2 comments · Fixed by #7700
Labels
service/apigateway Issues and PRs that pertain to the apigateway 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_api_gateway_integration_response

response_parameters_in_json Argument Removal

Switch your Terraform configuration to the response_parameters argument instead.

For example, given this previous configuration:

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

  response_parameters_in_json = <<PARAMS
{
    "method.response.header.Content-Type": "integration.response.body.type"
}
PARAMS
}

An updated configuration:

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

  response_parameters = {
    "method.response.header.Content-Type" = "integration.response.body.type"
  }
}
@bflad bflad added service/apigateway Issues and PRs that pertain to the apigateway 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 24, 2019
…onse_parameters_in_json argument

Reference: #7679

Changes:

* Remove deprecated `response_parameters_in_json` argument
* Remove extraneous `resource.Retry()` usage in resource deletion

Output from acceptance testing:

```
--- PASS: TestAccAWSAPIGatewayIntegrationResponse_basic (25.60s)
```
@bflad
Copy link
Contributor Author

bflad commented Feb 24, 2019

Pull request submitted: #7700

@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/apigateway Issues and PRs that pertain to the apigateway service. technical-debt Addresses areas of the codebase that need refactoring or redesign.
Projects
None yet
1 participant