We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm requesting the support for the --enable-execute-command option for the ecs run_task job/command
Something like this
- aws-ecs/run_task: cluster: <<parameters.cluster>> enable_execute_command: true run_task_output: /tmp/run_task_output.json security_group_ids: <<parameters.security_group_ids>> subnet_ids: <<parameters.subnet_ids>> task_definition: "${CCI_ORB_AWS_ECS_REGISTERED_TASK_DFN}" - run: name: Get Task ARN from run-task command: >- TASK_ARN=$(jq -r '.tasks[0].taskArn' /tmp/run_task_output.json) && echo "export TASK_ARN='${TASK_ARN}'" >> "$BASH_ENV" - run: name: ECS Execute Command command: | aws ecs execute-command \ --cluster <<parameters.cluster>> \ --command '<<parameters.command>>' \ --non-interactive \ --task ${TASK_ARN}
https://docs.aws.amazon.com/cli/latest/reference/ecs/run-task.html#options See the --enable-execute-command section
--enable-execute-command
The text was updated successfully, but these errors were encountered:
Created PR: #204 for this
Sorry, something went wrong.
is anybody out there?
Hi @cheethoe, the version https://circleci.com/developer/orbs/orb/circleci/aws-ecs?version=5.0.0 should allow that new functionality.
No branches or pull requests
Describe Request:
I'm requesting the support for the --enable-execute-command option for the ecs run_task job/command
Examples:
Something like this
Supporting Documentation Links:
https://docs.aws.amazon.com/cli/latest/reference/ecs/run-task.html#options
See the
--enable-execute-command
sectionThe text was updated successfully, but these errors were encountered: