Skip to content

Commit

Permalink
Merge pull request #2430 from atsushi-ishibashi/fix_api_gateway_method
Browse files Browse the repository at this point in the history
r/api_gateway_method: Fix typo authorization_type -> authorization
  • Loading branch information
radeksimko authored Nov 26, 2017
2 parents 19503d1 + d548f22 commit 3873b93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/resource_aws_api_gateway_method.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func resourceAwsApiGatewayMethodRead(d *schema.ResourceData, meta interface{}) e
d.Set("request_parameters", aws.BoolValueMap(out.RequestParameters))
d.Set("request_parameters_in_json", aws.BoolValueMap(out.RequestParameters))
d.Set("api_key_required", out.ApiKeyRequired)
d.Set("authorization_type", out.AuthorizationType)
d.Set("authorization", out.AuthorizationType)
d.Set("authorizer_id", out.AuthorizerId)
d.Set("request_models", aws.StringValueMap(out.RequestModels))
d.Set("request_validator_id", out.RequestValidatorId)
Expand Down

0 comments on commit 3873b93

Please sign in to comment.