1---
2base_dir: /tmp
3
4ec2:
5  name: delegated-instance-ec2
6  key_name: molecule
7  key_path: "{{ base_dir }}/ssh-key-ec2"
8  ssh_config_path: "{{ base_dir }}/ssh-config-ec2"
9  ssh_user: ubuntu
10
11gce:
12  name: delegated-instance-gce
13  zone: us-west1-a
14  key_path: "{{ lookup('env', 'HOME') }}/.ssh/google_compute_engine"
15  ssh_config_path: "{{ base_dir }}/ssh-config-gce"
16  ssh_user: "{{ lookup('env', 'USER') }}"
17
18openstack:
19  name: delegated-instance-openstack
20  key_name: molecule
21  key_path: "{{ base_dir }}/ssh-key-openstack"
22  ssh_config_path: "{{ base_dir }}/ssh-config-openstack"
23  ssh_user: cloud-user
24
25openstack_key_path: "{{ base_dir }}/ssh-key-openstack"
26openstack_ssh_config_path: "{{ base_dir }}/ssh-config-openstack"
27