# # Copyright Amazon.com, Inc. and its affiliates. All Rights Reserved. # SPDX-License-Identifier: MIT # # Licensed under the MIT License. See the LICENSE accompanying this file # for the specific language governing permissions and limitations under # the License. # resource "aws_api_gateway_rest_api" "apigw" { provider = aws.dev name = "waf-poc" description = "API for waf poc" endpoint_configuration { types = ["REGIONAL"] } tags = merge( local.app_tags, local.common_tags, ) policy = <