former2 icon indicating copy to clipboard operation
former2 copied to clipboard

terraform resource aws_api_gateway_method incorrect output

Open rorourke-iot opened this issue 1 year ago • 0 comments

Output for the resource aws_api_gateway_method was generated as

resource "aws_api_gateway_method" "<terraform id>" {
    rest_api_id = "<api id>"
    resource_id = "<resource id>"
    http_method = "POST"
    authorization = "CUSTOM"
    authorizer_id = "<auth id>"
    api_key_required = false
    request_parameters {}
    request_models {}
}

request_parameters and request_models should be request_parameters = {} and request_models = {} or can be omitted according the docs.

rorourke-iot avatar May 01 '23 14:05 rorourke-iot