From 85cdf24cda37d4cda5d362f8a4e40ff1be8d06a0 Mon Sep 17 00:00:00 2001 From: Xavier Basty Date: Thu, 8 Feb 2024 07:24:24 +0100 Subject: [PATCH] fix: validate CI run (#65) --- src/http_server/mod.rs | 1 - terraform/res_ecs.tf | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http_server/mod.rs b/src/http_server/mod.rs index f06d568..fd11a29 100644 --- a/src/http_server/mod.rs +++ b/src/http_server/mod.rs @@ -308,7 +308,6 @@ fn build_content_security_header(domains: Vec) -> String { // `*.domain` doesn't match `domain` by the Content-Security-Policy spec, so // we are specifying both. - // // See the test for this function if you have any doubts. [" ", proto, "*.", domain, " ", proto, domain] }); diff --git a/terraform/res_ecs.tf b/terraform/res_ecs.tf index d93e4a2..5909f84 100644 --- a/terraform/res_ecs.tf +++ b/terraform/res_ecs.tf @@ -22,6 +22,7 @@ resource "aws_iam_role" "application_role" { }) } + # ECS Cluster, Task, Service, and Load Balancer for our app module "ecs" { source = "./ecs"