mirror of
https://github.com/trailofbits/algo
synced 2024-11-13 19:12:06 +00:00
41 lines
1.4 KiB
YAML
41 lines
1.4 KiB
YAML
- set_fact:
|
|
credentials_file_lookup: "{{ lookup('file', '{{ credentials_file }}') }}"
|
|
ssh_public_key_lookup: "{{ lookup('file', '{{ SSH_keys.public }}') }}"
|
|
|
|
- name: "Creating a new instance..."
|
|
gce:
|
|
instance_names: "{{ server_name }}"
|
|
zone: "{{ zone }}"
|
|
machine_type: f1-micro
|
|
image: ubuntu-1604
|
|
service_account_email: "{{ credentials_file_lookup.client_email }}"
|
|
credentials_file: "{{ credentials_file }}"
|
|
project_id: "{{ credentials_file_lookup.project_id }}"
|
|
metadata: '{"sshKeys":"root:{{ ssh_public_key_lookup }}"}'
|
|
register: google_vm
|
|
|
|
- name: Add the instance to an inventory group
|
|
add_host:
|
|
name: "{{ google_vm.instance_data[0].public_ip }}"
|
|
groups: vpn-host
|
|
ansible_ssh_user: ubuntu
|
|
ansible_python_interpreter: "/usr/bin/python2.7"
|
|
ansible_ssh_private_key_file: "{{ SSH_keys.private }}"
|
|
cloud_provider: gce
|
|
ipv6_support: no
|
|
|
|
- name: Firewall configured
|
|
local_action:
|
|
module: gce_net
|
|
name: "{{ google_vm.instance_data[0].network }}"
|
|
fwname: "algo-ikev2"
|
|
allowed: "udp:500,4500;tcp:22"
|
|
state: "present"
|
|
src_range: 0.0.0.0/0
|
|
service_account_email: "{{ credentials_file_lookup.client_email }}"
|
|
credentials_file: "{{ credentials_file }}"
|
|
project_id: "{{ credentials_file_lookup.project_id }}"
|
|
|
|
- set_fact:
|
|
cloud_instance_ip: "{{ google_vm.instance_data[0].public_ip }}"
|