File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
terraform-unity-sps-airflow
terraform-unity-sps-ogc-processes-api Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -592,7 +592,9 @@ resource "aws_api_gateway_integration" "rest_api_integration_for_airflow_api" {
592592 content_handling = " CONVERT_TO_TEXT"
593593 connection_type = " VPC_LINK"
594594 connection_id = data. aws_api_gateway_vpc_link . rest_api_unity_vpc_link . id
595- request_parameters = aws_api_gateway_method. rest_api_method_for_airflow_proxy_method . request_parameters
595+ request_parameters = {
596+ " integration.request.path.proxy" = " method.request.path.proxy"
597+ }
596598
597599 depends_on = [data . aws_api_gateway_vpc_link . rest_api_unity_vpc_link ]
598600}
Original file line number Diff line number Diff line change @@ -366,7 +366,9 @@ resource "aws_api_gateway_integration" "rest_api_integration_for_ogc_api" {
366366 content_handling = " CONVERT_TO_TEXT"
367367 connection_type = " VPC_LINK"
368368 connection_id = data. aws_api_gateway_vpc_link . rest_api_unity_vpc_link . id
369- request_parameters = aws_api_gateway_method. rest_api_method_for_ogc_proxy_method . request_parameters
369+ request_parameters = {
370+ " integration.request.path.proxy" = " method.request.path.proxy"
371+ }
370372
371373 depends_on = [data . aws_api_gateway_vpc_link . rest_api_unity_vpc_link ]
372374}
You can’t perform that action at this time.
0 commit comments