Skip to content

Commit

Permalink
Revert "Use SDK-provided constants for HTTP method names."
Browse files Browse the repository at this point in the history
This reverts commit 3a25855.
  • Loading branch information
ewbankkit committed Aug 16, 2019
1 parent e792fa9 commit 96cbf08
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions aws/resource_aws_appmesh_route.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,15 +185,15 @@ func resourceAwsAppmeshRoute() *schema.Resource {
Type: schema.TypeString,
Optional: true,
ValidateFunc: validation.StringInSlice([]string{
appmesh.HttpMethodConnect,
appmesh.HttpMethodDelete,
appmesh.HttpMethodGet,
appmesh.HttpMethodHead,
appmesh.HttpMethodOptions,
appmesh.HttpMethodPatch,
appmesh.HttpMethodPost,
appmesh.HttpMethodPut,
appmesh.HttpMethodTrace,
"CONNECT",
"DELETE",
"GET",
"HEAD",
"OPTIONS",
"PATCH",
"POST",
"PUT",
"TRACE",
}, false),
},

Expand Down

0 comments on commit 96cbf08

Please sign in to comment.