provision_sec_group.yml 411 B

12345678910111213
  1. ---
  2. # If running this play directly, be sure the variable
  3. # 'openshift_aws_node_group_type' is set correctly for your usage.
  4. # See build_ami.yml for an example.
  5. - hosts: localhost
  6. connection: local
  7. gather_facts: no
  8. tasks:
  9. - name: create security groups
  10. import_role:
  11. name: openshift_aws
  12. tasks_from: security_group.yml
  13. when: openshift_aws_create_security_groups | default(True) | bool