add option for generic

pull/202/head
Rob Hirschfeld 2016-04-06 09:50:00 -05:00
parent 6da1dc7c66
commit 90b9bba8a4
1 changed files with 2 additions and 2 deletions

View File

@ -48,8 +48,8 @@
- name: check cloud_provider value
fail:
msg: "If set the 'cloud_provider' var must be set either to 'gce', 'aws' or 'openstack'"
when: cloud_provider is defined and cloud_provider not in ['gce', 'aws', 'openstack']
msg: "If set the 'cloud_provider' var must be set either to 'generic', gce', 'aws' or 'openstack'"
when: cloud_provider is defined and cloud_provider not in ['generic', 'gce', 'aws', 'openstack']
- include: openstack-credential-check.yml
when: cloud_provider is defined and cloud_provider == 'openstack'