From a716ff3adec5250620e4f41db2c53f675d1a43ee Mon Sep 17 00:00:00 2001 From: Victoria Mann Date: Sun, 26 Nov 2023 16:09:31 -0600 Subject: [PATCH] change endpoint to regional --- api_gateway_main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/api_gateway_main.tf b/api_gateway_main.tf index ab5b3ac..fade74b 100644 --- a/api_gateway_main.tf +++ b/api_gateway_main.tf @@ -2,6 +2,10 @@ resource "aws_api_gateway_rest_api" "route53_api" { name = "Route53FlashpointAPI" description = "API for Route53Flashpoint DNS Management" tags = var.common_tags + + endpoint_configuration { + types = ["REGIONAL"] + } } resource "aws_api_gateway_deployment" "route53_api_deployment" {