blob: 2b847cf92d6fbbe3a2917850d6c48e38cd52d2c4 [file] [log] [blame]
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
---
# (re))create the specified database.
# dbName - name of the database to (re)create
# forceRecreation - if true, the databases will be deleted (if it exists) and recreated. If false, it will not be recreated.
- name: check if {{ dbName }} with {{ db.provider }} exists
uri:
url: "{{ db.protocol }}://{{ db.host }}:{{ db.port }}/{{ dbName }}"
method: HEAD
status_code: 200,404
user: "{{ db.credentials.admin.user }}"
password: "{{ db.credentials.admin.pass }}"
force_basic_auth: yes
register: response
- name: delete the {{ dbName }} with {{ db.provider }}
uri:
url: "{{ db.protocol }}://{{ db.host }}:{{ db.port }}/{{ dbName }}"
method: DELETE
status_code: 200,404
user: "{{ db.credentials.admin.user }}"
password: "{{ db.credentials.admin.pass }}"
force_basic_auth: yes
when: forceRecreation == True and response.status == 200
- name: create {{ dbName }} with {{ db.provider }}
uri:
url: "{{ db.protocol }}://{{ db.host }}:{{ db.port }}/{{ dbName }}"
method: PUT
status_code: 200,201
user: "{{ db.credentials.admin.user }}"
password: "{{ db.credentials.admin.pass }}"
force_basic_auth: yes
when: forceRecreation == True or response.status == 404