Skip to content

Commit

Permalink
linters fix
Browse files Browse the repository at this point in the history
  • Loading branch information
GomathiselviS committed Sep 7, 2023
1 parent b29bb6f commit 875948f
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,14 @@
vpc_id: "{{ vpc.vpc.id }}"
vm_info: "{{ vm_result }}"
rds_info: "{{ rds_result }}"
register: deploy_flask_app_role_output

- name: Check that a page returns successfully
ansible.builtin.uri:
url: "http://{{ deploy_flask_app_lb_result.elb.dns_name }}:{{ app_listening_port }}"
return_content: true
register: deploy_flask_app_check

- debug:
msg: "{{ deploy_flask_app_check }}"
until: "deploy_flask_app_check.status == 200"
retries: 5
delay: 10

always:
# Cleanup after ourselves
Expand Down

0 comments on commit 875948f

Please sign in to comment.