resource "aws_api_gateway_api_key" "${MyDemoApiKey}" {
name = "${MyDemoApiKey}"
stage_key {
rest_api_id = ""
stage_name = ""
}
}
aws_api_gateway_api_key
The code defines an aws_api_gateway_api_key resource with the name ${MyDemoApiKey}. The aws_api_gateway_api_key resource has the following properties: name is set to "${MyDemoApiKey}" and stage_key has the following properties:
rest_api_id is an empty string, stage_name is set to "".
Shortcut: tf_aws_api_gateway_api_key
0 Comments
Add Comment
Log in to add a comment