Skip to content

Commit

Permalink
Extend default ssh readiness timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
przsus committed Nov 4, 2024
1 parent c447c37 commit 7124629
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles/common/tasks/wait_for_ssh_readiness.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

---

- name: "Wait for device ssh server readiness, timeout in seconds: {{ ssh_readiness_timeout | default(600) }}"
- name: "Wait for device ssh server readiness, timeout in seconds: {{ ssh_readiness_timeout | default(900) }}"
ansible.builtin.wait_for:
delay: "{{ ssh_readiness_delay | default(60) }}"
timeout: "{{ ssh_readiness_timeout | default(600) }}"
timeout: "{{ ssh_readiness_timeout | default(900) }}"
state: started
host: "{{ instance_item.mgmt_public_ip }}"
port: 22
Expand Down

0 comments on commit 7124629

Please sign in to comment.