blob: 45b4390834093cb4999ac9b1f181a8cfd6daca94 (
plain)
1
2
3
4
5
6
7
8
9
10
|
---
- name: Create s3 bucket
hosts: localhost
connection: local
tasks:
- name: create s3 bucket
include_role:
name: openshift_aws
tasks_from: s3.yml
when: openshift_aws_create_s3 | default(true) | bool
|