Questions tagged [ecs-taskdefinition]

94 questions
-1
votes
1 answer

How can I call ECS task from Lambda and give arguments to ECS and return the output of ECS to Lambda?

I want to pass the arguments from the Lambda function to the ECS task, and the ECS task should process the data and return the results to the Lambda function. For example, if a user calls the API endpoint and sends some data, the API gateway will…
-1
votes
1 answer

parameterizing linux_capabilities in ecs task definition

I have a terraform configuration to create task definition in ECS Fargate. The main.tf file looks like this: ... data "template_file" "td_template" { template = td.tpl") vars = { linux_capabilities = "" } } resource…
-1
votes
1 answer

Dynamically update a key value inside ecs taskdef.json using shell script

Below is my taskdef.json and want to update few values dynamically using shell script, I'm trying to use JQ but doesn't seem to work as expected. { "containerDefinitions": [{ "logConfiguration": [{ "logDriver": "fluentd", …
chris
  • 324
  • 3
  • 17
1 2 3 4 5 6
7