diff options
author | Patrick Uiterwijk <puiterwijk@redhat.com> | 2015-06-05 12:01:09 +0000 |
---|---|---|
committer | Patrick Uiterwijk <puiterwijk@redhat.com> | 2015-06-05 12:01:09 +0000 |
commit | 5105b82c59c8424727627990df2e778116aac30c (patch) | |
tree | 22b8f7b4d83bac80286d2a1a1f63320c0feec0a8 | |
parent | 34c4263e4a17ff1d0e98e736890a92024d52dec2 (diff) | |
download | ansible-5105b82c59c8424727627990df2e778116aac30c.tar.gz ansible-5105b82c59c8424727627990df2e778116aac30c.tar.xz ansible-5105b82c59c8424727627990df2e778116aac30c.zip |
Fix other references to cloud net ids
-rw-r--r-- | library/nova_compute.py | 3 | ||||
-rw-r--r-- | tasks/transient_cloud.yml | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/library/nova_compute.py b/library/nova_compute.py index 4c1e97725..c3cbfda07 100644 --- a/library/nova_compute.py +++ b/library/nova_compute.py @@ -184,7 +184,8 @@ EXAMPLES = ''' wait_for: 200 flavor_id: 4 nics: - - net-id: 34605f38-e52a-25d2-b6ec-754a13ffb723 + # persistent-net + - net-id: 67b77354-39a4-43de-b007-bb813ac5c35f meta: hostname: test1 group: uge_master diff --git a/tasks/transient_cloud.yml b/tasks/transient_cloud.yml index e432423a1..ec19e0596 100644 --- a/tasks/transient_cloud.yml +++ b/tasks/transient_cloud.yml @@ -5,7 +5,8 @@ local_action: security_groups: all-icmp-transient,web-80-anywhere-transient,web-443-anywhere-transient,ssh-anywhere-transient,default nics: - - net-id: "28db7265-fb78-4937-bfe3-9c8a9b959c30" + # transient-net + - net-id: "96e0590b-e572-4340-9408-ce4d4e4f4536" name: "{{ name }}" module: nova_compute auth_url: "{{os_auth_url}}" |