former2
former2 copied to clipboard
terraform resource aws_api_gateway_method incorrect output
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.