Skip to content
This repository was archived by the owner on Oct 8, 2025. It is now read-only.
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions roles/deploy_container/tasks/action-create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@
- deploy_container.aws_ecs.elb_listeners is defined
- deploy_container.aws_ecs.elb_listeners | length

- name: Create an ALB.

Check failure on line 267 in roles/deploy_container/tasks/action-create.yml

View workflow job for this annotation

GitHub Actions / Linting

parser-error conflicting action statements: amazon.aws.elb_application_lb, wait
amazon.aws.elb_application_lb:
region: "{{ deploy_container.aws_ecs.region }}"
profile: "{{ deploy_container.aws_ecs.aws_profile }}"
Expand All @@ -278,6 +278,7 @@
ip_address_type: "{{ deploy_container.aws_ecs.elb_ip_address_type }}"
register: _aws_ecs_cluster_alb
delegate_to: localhost
wait: true
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It needs to be tabbed in and under ip_address_type (see linting error).

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks Greg, I've fixed it


- name: Create ECS service.
community.aws.ecs_service:
Expand Down
Loading