0
0
llucycodes42
The following code defines an AWS API Gateway authorizer for the demo resource. The name of the authorizer is "demo" and the REST API ID is empty. The authorizer's URI is set to be the empty string, and the authorizer's credentials are set to be the empty string.
Shortcut: tf_aws_api_gateway_authorizer
resource "aws_api_gateway_authorizer" "${demo}" {
name = "${demo}"
rest_api_id = ""
authorizer_uri = ""
authorizer_credentials = ""
}