From 3ba2ff7931b9c4a09a12a73b31da23e0563ab8dc Mon Sep 17 00:00:00 2001 From: Abdelhak Marouane Date: Wed, 17 Jul 2024 16:02:55 -0500 Subject: [PATCH] Remove architecture dependency --- infrastructure/ecs_services/airflow_metrics.tf | 2 +- infrastructure/ecs_services/airflow_scheduler.tf | 2 +- infrastructure/ecs_services/airflow_server.tf | 2 +- infrastructure/ecs_services/airflow_standalone_task.tf | 2 +- infrastructure/ecs_services/airflow_worker.tf | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/infrastructure/ecs_services/airflow_metrics.tf b/infrastructure/ecs_services/airflow_metrics.tf index e5c216a..4a2b90d 100644 --- a/infrastructure/ecs_services/airflow_metrics.tf +++ b/infrastructure/ecs_services/airflow_metrics.tf @@ -29,7 +29,7 @@ resource "aws_ecs_task_definition" "airflow_metrics" { network_mode = "awsvpc" runtime_platform { operating_system_family = "LINUX" - cpu_architecture = "AMD64" + cpu_architecture = "X86_64" } requires_compatibilities = ["FARGATE"] container_definitions = jsonencode([ diff --git a/infrastructure/ecs_services/airflow_scheduler.tf b/infrastructure/ecs_services/airflow_scheduler.tf index a47ddb9..bee47ef 100644 --- a/infrastructure/ecs_services/airflow_scheduler.tf +++ b/infrastructure/ecs_services/airflow_scheduler.tf @@ -45,7 +45,7 @@ resource "aws_ecs_task_definition" "airflow_scheduler" { network_mode = "awsvpc" runtime_platform { operating_system_family = "LINUX" - cpu_architecture = "AMD64" + cpu_architecture = "X86_64" } requires_compatibilities = ["FARGATE"] diff --git a/infrastructure/ecs_services/airflow_server.tf b/infrastructure/ecs_services/airflow_server.tf index 66445eb..0c40589 100644 --- a/infrastructure/ecs_services/airflow_server.tf +++ b/infrastructure/ecs_services/airflow_server.tf @@ -15,7 +15,7 @@ resource "aws_ecs_task_definition" "airflow_webserver" { network_mode = "awsvpc" runtime_platform { operating_system_family = "LINUX" - cpu_architecture = "AMD64" + cpu_architecture = "X86_64" } requires_compatibilities = ["FARGATE"] container_definitions = jsonencode([ diff --git a/infrastructure/ecs_services/airflow_standalone_task.tf b/infrastructure/ecs_services/airflow_standalone_task.tf index 09c1e96..b506472 100644 --- a/infrastructure/ecs_services/airflow_standalone_task.tf +++ b/infrastructure/ecs_services/airflow_standalone_task.tf @@ -31,7 +31,7 @@ resource "aws_ecs_task_definition" "airflow_standalone_task" { network_mode = "awsvpc" runtime_platform { operating_system_family = "LINUX" - cpu_architecture = "AMD64" + cpu_architecture = "X86_64" } requires_compatibilities = ["FARGATE"] diff --git a/infrastructure/ecs_services/airflow_worker.tf b/infrastructure/ecs_services/airflow_worker.tf index 1fe0893..c892d1c 100644 --- a/infrastructure/ecs_services/airflow_worker.tf +++ b/infrastructure/ecs_services/airflow_worker.tf @@ -16,7 +16,7 @@ resource "aws_ecs_task_definition" "airflow_worker" { network_mode = "awsvpc" runtime_platform { operating_system_family = "LINUX" - cpu_architecture = "AMD64" + cpu_architecture = "X86_64" } requires_compatibilities = ["FARGATE"] container_definitions = jsonencode([