mirror of
https://github.com/trailofbits/algo.git
synced 2025-07-25 06:53:00 +02:00
16 lines
426 B
YAML
16 lines
426 B
YAML
---
|
|
- name: Build python virtual environment
|
|
ansible.builtin.import_tasks: venv.yml
|
|
|
|
- name: Include prompts
|
|
ansible.builtin.import_tasks: prompts.yml
|
|
|
|
- name: Deploy the stack
|
|
ansible.builtin.import_tasks: cloudformation.yml
|
|
|
|
- name: Set facts
|
|
ansible.builtin.set_fact:
|
|
cloud_instance_ip: "{{ stack.stack_outputs.IpAddress }}"
|
|
ansible_ssh_user: algo
|
|
ansible_ssh_port: "{{ ssh_port }}"
|
|
cloudinit: true
|