Skip to content

Commit

Permalink
Remove architecture dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
amarouane-ABDELHAK committed Jul 17, 2024
1 parent 7b70bc7 commit 3ba2ff7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion infrastructure/ecs_services/airflow_metrics.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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([
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/ecs_services/airflow_scheduler.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down
2 changes: 1 addition & 1 deletion infrastructure/ecs_services/airflow_server.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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([
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/ecs_services/airflow_standalone_task.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down
2 changes: 1 addition & 1 deletion infrastructure/ecs_services/airflow_worker.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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([
Expand Down

0 comments on commit 3ba2ff7

Please sign in to comment.