-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update deploy_service_update.yml * update profile to profile_name on aws-cli/setup examples * Fix name of requires in example
- Loading branch information
1 parent
e2196a2
commit 1c53fd3
Showing
4 changed files
with
8 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,14 @@ usage: | |
version: 2.1 | ||
orbs: | ||
aws-ecs: circleci/[email protected] | ||
aws-cli: circleci/[email protected] | ||
jobs: | ||
run_task: | ||
docker: | ||
- image: cimg/python:3.10 | ||
steps: | ||
- aws-cli/setup: | ||
profile: "OIDC-USER" | ||
profile_name: "OIDC-USER" | ||
role_arn: "arn:aws:iam::123456789012:role/VALID_OIDC_ECS_ROLE" | ||
- aws-ecs/run_task: | ||
cluster: cluster1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,13 +6,14 @@ usage: | |
version: 2.1 | ||
orbs: | ||
aws-ecs: circleci/[email protected] | ||
aws-cli: circleci/[email protected] | ||
jobs: | ||
run_task: | ||
docker: | ||
- image: cimg/python:3.10 | ||
steps: | ||
- aws-cli/setup: | ||
profile: "OIDC-USER" | ||
profile_name: "OIDC-USER" | ||
role_arn: "arn:aws:iam::123456789012:role/VALID_OIDC_ECS_ROLE" | ||
- aws-ecs/run_task: | ||
cluster: $CLUSTER_NAME | ||
|