mirror of
https://github.com/trailofbits/algo.git
synced 2025-07-24 22:43:07 +02:00
* Move to ansible-2.4.3 * Add Lightsail support #623 * Fixing the EC2 deployment * Scaleway integration #623 * OpenStack cloud provider (DreamCompute optimised) #623 * Remove the security role * Enable unattended-upgrades for clouds * New requirements to make Azure and GCE work
16 lines
307 B
YAML
16 lines
307 B
YAML
---
|
|
|
|
- name: Wait until SSH becomes ready...
|
|
wait_for:
|
|
port: 22
|
|
host: "{{ cloud_instance_ip }}"
|
|
search_regex: "OpenSSH"
|
|
delay: 10
|
|
timeout: 320
|
|
state: present
|
|
|
|
- name: A short pause, in order to be sure the instance is ready
|
|
pause:
|
|
seconds: 20
|
|
|
|
- include_tasks: local_ssh.yml
|