From 088ece016268be4d90c59fb17345f5cb86284a6a Mon Sep 17 00:00:00 2001 From: windWingWalker Date: Fri, 29 Jul 2022 11:21:10 +0800 Subject: [PATCH] testing --- iac/modules/api-route/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iac/modules/api-route/main.tf b/iac/modules/api-route/main.tf index 1e77242..46e2069 100644 --- a/iac/modules/api-route/main.tf +++ b/iac/modules/api-route/main.tf @@ -13,7 +13,7 @@ resource "aws_apigatewayv2_integration" "default" { resource "aws_apigatewayv2_route" "default" { api_id = var.api_id - route_key = "${var.http_method} ${var.resource_name}" + route_key = "${var.http_method}/${var.resource_name}" target = "integrations/${aws_apigatewayv2_integration.default.id}" depends_on = [