infrastructure.yml 712 B

123456789101112131415161718192021
  1. ---
  2. - name: Alert user to variables needed
  3. hosts: localhost
  4. tasks:
  5. - name: Alert user to variables needed - clusterid
  6. debug:
  7. msg: "openshift_aws_clusterid={{ openshift_aws_clusterid | default('default') }}"
  8. - name: Alert user to variables needed - region
  9. debug:
  10. msg: "openshift_aws_region={{ openshift_aws_region | default('us-east-1') }}"
  11. - import_playbook: ../../aws/openshift-cluster/provision_vpc.yml
  12. - import_playbook: ../../aws/openshift-cluster/provision_ssh_keypair.yml
  13. - import_playbook: ../../aws/openshift-cluster/provision_sec_group.yml
  14. - import_playbook: ../../aws/openshift-cluster/provision_s3.yml
  15. - import_playbook: ../../aws/openshift-cluster/provision_elb.yml