From da64fe8c53290a06c3f1c9811676282e508dfce6 Mon Sep 17 00:00:00 2001
From: bertrand <bpinel@ippon.fr>
Date: Sat, 16 Feb 2019 19:17:27 +0100
Subject: [PATCH] Handle CORS response for all methods of the API Gateway

---
 cloud/terraform/api-gateway.tf | 33 ++++++++++++++++++++++++++++-----
 1 file changed, 28 insertions(+), 5 deletions(-)

diff --git a/cloud/terraform/api-gateway.tf b/cloud/terraform/api-gateway.tf
index 45bb796..df3f2e0 100644
--- a/cloud/terraform/api-gateway.tf
+++ b/cloud/terraform/api-gateway.tf
@@ -165,8 +165,8 @@ resource "aws_api_gateway_method_response" "200TypeGet" {
   http_method = "${aws_api_gateway_method.typePathGet.http_method}"
   status_code = "200"
   response_parameters {
-        "method.response.header.Access-Control-Allow-Origin" = true
-    }
+      "method.response.header.Access-Control-Allow-Origin" = true
+  }
 }
 
 resource "aws_api_gateway_integration_response" "200TypeGetIntegrationResponse" {
@@ -179,7 +179,7 @@ resource "aws_api_gateway_integration_response" "200TypeGetIntegrationResponse"
   }
   response_parameters {
         "method.response.header.Access-Control-Allow-Origin" = "'*'"
-    }
+  }
   depends_on = ["aws_api_gateway_integration.lambdaJsonTypeGet"]
 }
 ##############################################
@@ -205,6 +205,9 @@ resource "aws_api_gateway_method_response" "200TypePost" {
   resource_id = "${aws_api_gateway_resource.typePath.id}"
   http_method = "${aws_api_gateway_method.typePathPost.http_method}"
   status_code = "200"
+  response_parameters {
+      "method.response.header.Access-Control-Allow-Origin" = true
+  }
 }
 
 resource "aws_api_gateway_integration_response" "200TypePostIntegrationResponse" {
@@ -215,6 +218,9 @@ resource "aws_api_gateway_integration_response" "200TypePostIntegrationResponse"
   response_templates = {
     "application/json" = ""
   }
+  response_parameters {
+    "method.response.header.Access-Control-Allow-Origin" = "'*'"
+  }
   depends_on = ["aws_api_gateway_integration.lambdaJsonTypePost"]
 }
 ##############################################
@@ -240,6 +246,9 @@ resource "aws_api_gateway_method_response" "200TypeIdGet" {
   resource_id = "${aws_api_gateway_method.typeIdPathGet.resource_id}"
   http_method = "${aws_api_gateway_method.typeIdPathGet.http_method}"
   status_code = "200"
+  response_parameters {
+      "method.response.header.Access-Control-Allow-Origin" = true
+  }
 }
 
 resource "aws_api_gateway_integration_response" "200TypeIdGetIntegrationResponse" {
@@ -249,7 +258,10 @@ resource "aws_api_gateway_integration_response" "200TypeIdGetIntegrationResponse
   status_code = "${aws_api_gateway_method_response.200TypeIdGet.status_code}"
   response_templates = {
     "application/json" = ""
-  } 
+  }
+  response_parameters {
+    "method.response.header.Access-Control-Allow-Origin" = "'*'"
+  }
   depends_on=["aws_api_gateway_integration.lambdaJsonTypeIdGet"]
 }
 ##############################################
@@ -275,8 +287,10 @@ resource "aws_api_gateway_method_response" "200TypeIdDelete" {
   resource_id = "${aws_api_gateway_method.typeIdPathDelete.resource_id}"
   http_method = "${aws_api_gateway_method.typeIdPathDelete.http_method}"
   status_code = "200"
+  response_parameters {
+      "method.response.header.Access-Control-Allow-Origin" = true
+  }
 }
-
 resource "aws_api_gateway_integration_response" "200TypeIdDeleteIntegrationResponse" {
   rest_api_id = "${aws_api_gateway_rest_api.jsonapi.id}"
   resource_id = "${aws_api_gateway_resource.typeIdPath.id}"
@@ -285,6 +299,9 @@ resource "aws_api_gateway_integration_response" "200TypeIdDeleteIntegrationRespo
   response_templates = {
     "application/json" = ""
   }
+  response_parameters {
+    "method.response.header.Access-Control-Allow-Origin" = "'*'"
+  }
   depends_on= ["aws_api_gateway_integration.lambdaJsonTypeIdDelete"]
 }
 ##############################################
@@ -310,6 +327,9 @@ resource "aws_api_gateway_method_response" "200TypeIdPatch" {
   resource_id = "${aws_api_gateway_method.typeIdPathPatch.resource_id}"
   http_method = "${aws_api_gateway_method.typeIdPathPatch.http_method}"
   status_code = "200"
+  response_parameters {
+      "method.response.header.Access-Control-Allow-Origin" = true
+  }
 }
 resource "aws_api_gateway_integration_response" "200TypeIdPatchIntegrationResponse" {
   rest_api_id = "${aws_api_gateway_rest_api.jsonapi.id}"
@@ -319,6 +339,9 @@ resource "aws_api_gateway_integration_response" "200TypeIdPatchIntegrationRespon
   response_templates = {
     "application/json" = ""
   }
+  response_parameters {
+    "method.response.header.Access-Control-Allow-Origin" = "'*'"
+  }
   depends_on = ["aws_api_gateway_integration.lambdaJsonTypeIdPatch"]
 }
 
-- 
GitLab