command (Containers)

From wikieduonline
Jump to navigation Jump to search


ChatGPT example:

resource "aws_ecs_task_definition" "example" {
 family                   = "example"
 container_definitions    = jsonencode([
   {
     name  = "example-container"
     image = "example-image"
     command = [
       "sh",
       "-c",
       "echo 'Hello, World!' > /path/to/file.txt"
     ]
     ...
   }
 ])
 ...
}



Advertising: