0
0
llucycodes42
The following code configures an aws_api_gateway_integration resource for use in a testing environment. The resource has an id of "MyDemoIntegration" and a resource_id of "urn:aws:iam::12345:gateway:123456" . The http_method attribute is set to "GET" . The type attribute is set to "MOCK" .
Shortcut: tf_aws_api_gateway_integration
resource "aws_api_gateway_integration" "${MyDemoIntegration}" {
rest_api_id = ""
resource_id = ""
http_method = ""
type = "MOCK"
}