diff options
author | Patrick Uiterwijk <puiterwijk@redhat.com> | 2016-06-22 19:12:16 +0000 |
---|---|---|
committer | Patrick Uiterwijk <puiterwijk@redhat.com> | 2016-06-22 19:12:16 +0000 |
commit | bd3e666dad368672c0256cb97eff9248950df368 (patch) | |
tree | 0080ab43f06fa4cbee43f53fdf27b40feb11e1d0 | |
parent | 70347cca5eec5bae948ee9ab4692a1990fe65dea (diff) | |
download | ansible-bd3e666dad368672c0256cb97eff9248950df368.tar.gz ansible-bd3e666dad368672c0256cb97eff9248950df368.tar.xz ansible-bd3e666dad368672c0256cb97eff9248950df368.zip |
Now public ip can be a list
Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
-rw-r--r-- | tasks/transient_cloud.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/transient_cloud.yml b/tasks/transient_cloud.yml index c133d864b..4c6ce5710 100644 --- a/tasks/transient_cloud.yml +++ b/tasks/transient_cloud.yml @@ -22,7 +22,7 @@ register: nova_result - name: add it to the special group - local_action: add_host hostname="{{ nova_result.public_ip }}" groupname=tmp_just_created + local_action: add_host hostname="{{ nova_result.public_ip[0] }}" groupname=tmp_just_created - name: mail off about where it is local_action: mail |