We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2a2bf6 commit f1869b0Copy full SHA for f1869b0
1 file changed
more_examples/main.tf
@@ -62,10 +62,14 @@ resource "aws_ecs_task_definition" "my_task" {
62
family = "my-task"
63
requires_compatibilities = ["FARGATE"]
64
network_mode = "awsvpc"
65
- cpu = "1024" # 1 vCPU
+ cpu = "1024" # 1 vCPU
66
memory = "2048" # 2 GB
67
execution_role_arn = "aws_iam_role.ecs_task_execution_role.arn"
68
69
+ runtime_platform {
70
+ cpu_architecture = "ARM64"
71
+ }
72
+
73
container_definitions = jsonencode([
74
{
75
name = "task-container"
0 commit comments