summaryrefslogtreecommitdiffstats
path: root/roles/openshift_cloud_provider/tasks/main.yml
blob: 46549fc75813b56c686eef0eb16c2a19477abb9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---
- name: Create cloudprovider config dir
  file:
    path: "{{ openshift.common.config_base }}/cloudprovider"
    state: directory
  when: has_cloudprovider | bool

- include: openstack.yml
  when: cloudprovider_is_openstack | bool

- include: aws.yml
  when: cloudprovider_is_aws | bool