Creating multiple http methods in a resource

How can I attach the PUT and DELETE method on an API Gateway resource using AWS_PROXY integration?

The PUT method is getting overridden by the DELETE method in lambda triggers.
Is there a way to have both methods?

/subs
DELETE
PUT
OPTIONS

I am using terraform module to create API Gateway here.