Skip to content

Commit

Permalink
Merge pull request #6697 from austinbutler/patch-1
Browse files Browse the repository at this point in the history
Minor fixes to api_gateway_method request_parameters documentation
  • Loading branch information
bflad authored Feb 24, 2019
2 parents 76717f4 + 322c4f6 commit cb11aa7
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions website/docs/r/api_gateway_method.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,7 @@ The following arguments are supported:
and value is either `Error`, `Empty` (built-in models) or `aws_api_gateway_model`'s `name`.
* `request_validator_id` - (Optional) The ID of a `aws_api_gateway_request_validator`
* `request_parameters` - (Optional) A map of request query string parameters and headers that should be passed to the integration.
For example:
```hcl
request_parameters = {
"method.request.header.X-Some-Header" = true
"method.request.querystring.some-query-param" = true
}
```
would define that the header `X-Some-Header` and the query string `some-query-param` must be provided on the request, or
For example: `request_parameters = {"method.request.header.X-Some-Header" = true "method.request.querystring.some-query-param" = true}` would define that the header `X-Some-Header` and the query string `some-query-param` must be provided in the request
* `request_parameters_in_json` - **Deprecated**, use `request_parameters` instead.

## Import
Expand Down

0 comments on commit cb11aa7

Please sign in to comment.