diff options
author | Seth Vidal <skvidal@fedoraproject.org> | 2012-10-25 21:42:26 +0000 |
---|---|---|
committer | Seth Vidal <skvidal@fedoraproject.org> | 2012-10-25 21:42:26 +0000 |
commit | 820d0ef5ed643c26e8b422febb326ca05650c8db (patch) | |
tree | 95c3f4c11668e037d561117c40a6bd301cb5ded5 | |
parent | 0e26f87f79799bab833e7beda7fcd8433cb3052a (diff) | |
download | ansible-820d0ef5ed643c26e8b422febb326ca05650c8db.tar.gz ansible-820d0ef5ed643c26e8b422febb326ca05650c8db.tar.xz ansible-820d0ef5ed643c26e8b422febb326ca05650c8db.zip |
see if this works w/o the ec2_key specification in there
-rw-r--r-- | tasks/persistent_cloud.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/persistent_cloud.yml b/tasks/persistent_cloud.yml index 1f5b767f5..1ee6740ef 100644 --- a/tasks/persistent_cloud.yml +++ b/tasks/persistent_cloud.yml @@ -5,7 +5,7 @@ ignore_errors: true - name: spin it up - local_action: "ec2_create keypair=${keypair} image=${image} type=${instance_type} wait=true group=${security_group} ec2_access_key=${fedora_admin_access_key} ec2_secret_key=${fedora_admin_secret_key} ec2_url=http://209.132.184.1:8773/services/Eucalyptus" + local_action: ec2_create keypair=${keypair} image=${image} type=${instance_type} wait=true group=${security_group} register: inst_res only_if: "'${host_is_up.rc}' != '0'" |