mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
605 B
YAML
21 lines
605 B
YAML
8 years ago
|
# GCE Labels Setup.
|
||
|
# ============================================================
|
||
|
- name: "Create instance for executing gce_labels tests"
|
||
|
gce:
|
||
|
instance_names: "{{ instance_name }}"
|
||
|
machine_type: "{{ machine_type }}"
|
||
|
image: "{{ image }}"
|
||
|
zone: "{{ zone }}"
|
||
|
project_id: "{{ project_id }}"
|
||
|
pem_file: "{{ pem_file }}"
|
||
|
service_account_email: "{{ service_account_email }}"
|
||
|
state: present
|
||
|
register: result
|
||
|
|
||
|
- name: assert VM created
|
||
|
assert:
|
||
|
that:
|
||
|
- 'result.changed'
|
||
|
- 'result.instance_names[0] == "{{ instance_name }}"'
|
||
|
- 'result.state == "present"'
|