mirror of
https://github.com/trailofbits/algo.git
synced 2025-04-11 11:47:08 +02:00
* bump ansible to 2.8.3 * DigitalOcean: move to the latest modules * Add Hetzner Cloud * Scaleway and Lightsail fixes * lint missing roles * Update roles/cloud-hetzner/tasks/main.yml Add api_token Co-Authored-By: phaer <phaer@phaer.org> * Update roles/cloud-hetzner/tasks/main.yml Add api_token Co-Authored-By: phaer <phaer@phaer.org> * Try to run apt until succeeded * Scaleway modules upgrade * GCP: Refactoring, remove deprecated modules * Doc updates (#1552) * Update README.md Adding links and mentions of Exoscale aka CloudStack and Hetzner Cloud. * Update index.md Add the Hetzner Cloud to the docs index * Remove link to Win 10 IPsec instructions * Delete client-windows.md Unnecessary since the deprecation of IPsec for Win10. * Update deploy-from-ansible.md Added sections and required variables for CloudStack and Hetzner Cloud. * Update deploy-from-ansible.md Added sections for CloudStack and Hetzner, added req variables and examples, mentioned environment variables, and added links to the provider role section. * Update deploy-from-ansible.md Cosmetic changes to links, fix typo. * Update GCE variables * Update deploy-from-script-or-cloud-init-to-localhost.md Fix a finer point, and make variables list more readable. * update azure requirements * Python3 draft * set LANG=c to the p12 password generation task * Update README * Install cloud requirements to the existing venv * FreeBSD fix * env->.env fixes * lightsail_region_facts fix * yaml syntax fix * Update README for Python 3 (#1564) * Update README for Python 3 * Remove tabs and tweak instructions * Remove cosmetic command indentation * Update README.md * Update README for Python 3 (#1565) * DO fix for "found unpermitted parameters: id" * Verify Python version * Remove ubuntu 16.04 from readme * Revert back DigitalOcean module * Update deploy-from-script-or-cloud-init-to-localhost.md * env to .env
84 lines
2.4 KiB
YAML
84 lines
2.4 KiB
YAML
---
|
|
- name: Build python virtual environment
|
|
import_tasks: venv.yml
|
|
|
|
- name: Include prompts
|
|
import_tasks: prompts.yml
|
|
|
|
- name: Network configured
|
|
gcp_compute_network:
|
|
auth_kind: serviceaccount
|
|
service_account_file: "{{ credentials_file_path }}"
|
|
project: "{{ project_id }}"
|
|
name: algovpn
|
|
auto_create_subnetworks: true
|
|
routing_config:
|
|
routing_mode: REGIONAL
|
|
register: gcp_compute_network
|
|
|
|
- name: Firewall configured
|
|
gcp_compute_firewall:
|
|
auth_kind: serviceaccount
|
|
service_account_file: "{{ credentials_file_path }}"
|
|
project: "{{ project_id }}"
|
|
name: algovpn
|
|
network: "{{ gcp_compute_network }}"
|
|
direction: INGRESS
|
|
allowed:
|
|
- ip_protocol: udp
|
|
ports:
|
|
- '500'
|
|
- '4500'
|
|
- '{{ wireguard_port|string }}'
|
|
- ip_protocol: tcp
|
|
ports:
|
|
- '22'
|
|
- ip_protocol: icmp
|
|
|
|
- block:
|
|
- name: External IP allocated
|
|
gcp_compute_address:
|
|
auth_kind: serviceaccount
|
|
service_account_file: "{{ credentials_file_path }}"
|
|
project: "{{ project_id }}"
|
|
name: "{{ algo_server_name }}"
|
|
region: "{{ algo_region }}"
|
|
register: gcp_compute_address
|
|
|
|
- name: Set External IP as a fact
|
|
set_fact:
|
|
external_ip: "{{ gcp_compute_address.address }}"
|
|
when: cloud_providers.gce.external_static_ip
|
|
|
|
- name: Instance created
|
|
gcp_compute_instance:
|
|
auth_kind: serviceaccount
|
|
service_account_file: "{{ credentials_file_path }}"
|
|
project: "{{ project_id }}"
|
|
name: "{{ algo_server_name }}"
|
|
zone: "{{ algo_zone }}"
|
|
machine_type: "{{ cloud_providers.gce.size }}"
|
|
disks:
|
|
- auto_delete: true
|
|
boot: true
|
|
initialize_params:
|
|
source_image: "projects/ubuntu-os-cloud/global/images/family/{{ cloud_providers.gce.image }}"
|
|
metadata:
|
|
ssh-keys: "ubuntu:{{ ssh_public_key_lookup }}"
|
|
user-data: |
|
|
#!/bin/bash
|
|
sudo apt-get remove -y --purge sshguard
|
|
network_interfaces:
|
|
- network: "{{ gcp_compute_network }}"
|
|
access_configs:
|
|
- name: "{{ algo_server_name }}"
|
|
nat_ip: "{{ gcp_compute_address|default(None) }}"
|
|
type: ONE_TO_ONE_NAT
|
|
tags:
|
|
items:
|
|
- "environment-algo"
|
|
register: gcp_compute_instance
|
|
|
|
- set_fact:
|
|
cloud_instance_ip: "{{ gcp_compute_instance.networkInterfaces[0].accessConfigs[0].natIP }}"
|
|
ansible_ssh_user: ubuntu
|