Use the correct name for the transient tenant

This commit is contained in:
Kevin Fenzi 2015-05-13 21:02:04 +00:00
parent 04b65bdd3a
commit 5d562898de
2 changed files with 3 additions and 2 deletions

View file

@ -26,6 +26,7 @@
- net-id: "28db7265-fb78-4937-bfe3-9c8a9b959c30"
- floating_ips:
- "{{public_ip}}"
tasks:
- name: fail when name is not provided
fail: msg="Please specify the name of the instance"

View file

@ -13,9 +13,9 @@
login_username: "admin"
login_password: "{{ADMIN_PASS}}"
login_tenant_name: transitory
image_id: "{{ image|image_name_to_id('admin', ADMIN_PASS, 'transitory', os_auth_url) }}"
image_id: "{{ image|image_name_to_id('admin', ADMIN_PASS, 'transient', os_auth_url) }}"
wait_for: 300
flavor_id: "{{ instance_type|flavor_name_to_id('admin', ADMIN_PASS, 'transitory', os_auth_url) }}"
flavor_id: "{{ instance_type|flavor_name_to_id('admin', ADMIN_PASS, 'transient', os_auth_url) }}"
security_groups: "{{security_group}}"
key_name: "{{ keypair }}"
nics: "{{ cloud_networks }}"