summaryrefslogtreecommitdiffstats
path: root/roles/openshift_aws/tasks/launch_config.yml
blob: 0dbeba5a0ee148bfb5d25924587a094a936a9540 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
- fail:
    msg: "Ensure that an AMI value is defined for openshift_aws_ami or openshift_aws_launch_config_custom_image."
  when:
  - openshift_aws_ami is undefined

- fail:
    msg: "Ensure that openshift_deployment_type is defined."
  when:
  - openshift_deployment_type is undefined

- include: launch_config_create.yml
  with_dict: "{{ l_nodes_to_build }}"
  loop_control:
    loop_var: launch_config_item