Skip to content

Commit

Permalink
chore: fix parameters to use snake case (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
brivu authored Jul 31, 2023
1 parent 6814b79 commit 7918a8a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/examples/deploy_ecs_scheduled_task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ usage:
role_arn: "arn:aws:iam::123456789012:role/OIDC_ARN"
region: AWS_REGION
profile_name: "OIDC-PROFILE"
session-duration: 3600
role-session-name: "example-session-name"
session_duration: "3600"
role_session_name: "example-session-name"
- aws-ecs/update_task_definition_from_json:
task_definition_json: my-app-definition.json
- aws-ecs/deploy_ecs_scheduled_task:
Expand Down
2 changes: 1 addition & 1 deletion src/examples/deploy_service_update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ usage:
role_arn: "arn:aws:iam::123456789012:role/VALID_OIDC_ECR_ROLE"
# Must use same profile configured in aws-cli/setup command
profile: "OIDC-USER"
registry-id: AWS_ECR_REGISTRY_ID
registry_id: ${AWS_ECR_REGISTRY_ID}
repo: '${MY_APP_PREFIX}'
region: AWS_REGION
tag: '${CIRCLE_SHA1}'
Expand Down
4 changes: 2 additions & 2 deletions src/examples/update_service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ usage:
role_arn: "arn:aws:iam::123456789012:role/OIDC_ARN"
region: AWS_REGION
profile_name: "OIDC-PROFILE"
session-duration: 3600
role-session-name: "example-session-name"
session_duration: "3600"
role_session_name: "example-session-name"
- aws-ecs/update_service:
family: '${MY_APP_PREFIX}-service'
cluster: '${MY_APP_PREFIX}-cluster'
Expand Down
4 changes: 2 additions & 2 deletions src/examples/update_task_definition_from_json.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ usage:
role_arn: "arn:aws:iam::123456789012:role/OIDC_ARN"
region: AWS_REGION
profile_name: "OIDC-PROFILE"
session-duration: 3600
role-session-name: "example-session-name"
session_duration: "3600"
role_session_name: "example-session-name"
- aws-ecs/update_task_definition_from_json:
task_definition_json: my-app-definition.json
workflows:
Expand Down
4 changes: 2 additions & 2 deletions src/examples/verify_revision_deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ usage:
role_arn: "arn:aws:iam::123456789012:role/OIDC_ARN"
region: AWS_REGION
profile_name: "OIDC-PROFILE"
session-duration: 3600
role-session-name: "example-session-name"
session_duration: "3600"
role_session_name: "example-session-name"
- run:
name: Get last task definition
command: >
Expand Down

0 comments on commit 7918a8a

Please sign in to comment.