Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 58c566a

Browse files
committedJul 30, 2024·
original inputs and different security group
1 parent d3be320 commit 58c566a

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed
 

‎.github/workflows/test-workflow.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,22 +29,28 @@ jobs:
2929
uses: aws-actions/amazon-ecs-deploy-task-definition@b3a528eb690c86037acd19fd6a2a86337f4e3657
3030
with:
3131
task-definition: task-definition-run-task.json
32-
cluster: github-actions-deploy-task-def-integ-test
32+
cluster: github-actions-deploy-task-def-integ-test
3333
run-task: true
34+
run-task-subnets: subnet-e5604fce, subnet-fe9355b4, subnet-c49431bc, subnet-392f9b64
35+
run-task-security-groups: sg-148d093a
36+
run-task-launch-type: FARGATE
3437
wait-for-task-stopped: false
3538

3639
- name: Deploy Amazon ECS task definition With Wait For Task Stopped Being True
3740
uses: aws-actions/amazon-ecs-deploy-task-definition@b3a528eb690c86037acd19fd6a2a86337f4e3657
3841
with:
3942
task-definition: task-definition-run-task.json
40-
cluster: github-actions-deploy-task-def-integ-test
43+
cluster: github-actions-deploy-task-def-integ-test
4144
run-task: true
45+
run-task-subnets: subnet-e5604fce, subnet-fe9355b4, subnet-c49431bc, subnet-392f9b64
46+
run-task-security-groups: sg-148d093a
47+
run-task-launch-type: FARGATE
4248
wait-for-task-stopped: true
4349

4450
- name: Deploy Amazon ECS task definition
4551
uses: aws-actions/amazon-ecs-deploy-task-definition@b3a528eb690c86037acd19fd6a2a86337f4e3657
4652
with:
4753
task-definition: task-definition.json
4854
service: github-actions-deploy-task-def-integ-test
49-
cluster: github-actions-deploy-task-def-integ-test
55+
cluster: github-actions-deploy-task-def-integ-test
5056
wait-for-service-stability: true

‎test-workflow.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,22 +29,28 @@ jobs:
2929
uses: aws-actions/amazon-ecs-deploy-task-definition@v1
3030
with:
3131
task-definition: task-definition-run-task.json
32-
cluster: github-actions-deploy-task-def-integ-test
32+
cluster: github-actions-deploy-task-def-integ-test
3333
run-task: true
34+
run-task-subnets: subnet-e5604fce, subnet-fe9355b4, subnet-c49431bc, subnet-392f9b64
35+
run-task-security-groups: sg-148d093a
36+
run-task-launch-type: FARGATE
3437
wait-for-task-stopped: false
3538

3639
- name: Deploy Amazon ECS task definition With Wait For Task Stopped Being True
3740
uses: aws-actions/amazon-ecs-deploy-task-definition@v1
3841
with:
3942
task-definition: task-definition-run-task.json
40-
cluster: github-actions-deploy-task-def-integ-test
43+
cluster: github-actions-deploy-task-def-integ-test
4144
run-task: true
45+
run-task-subnets: subnet-e5604fce, subnet-fe9355b4, subnet-c49431bc, subnet-392f9b64
46+
run-task-security-groups: sg-148d093a
47+
run-task-launch-type: FARGATE
4248
wait-for-task-stopped: true
4349

4450
- name: Deploy Amazon ECS task definition
4551
uses: aws-actions/amazon-ecs-deploy-task-definition@v1
4652
with:
4753
task-definition: task-definition.json
4854
service: github-actions-deploy-task-def-integ-test
49-
cluster: github-actions-deploy-task-def-integ-test
55+
cluster: github-actions-deploy-task-def-integ-test
5056
wait-for-service-stability: true

0 commit comments

Comments
 (0)
Please sign in to comment.