blob: e57b6b90353ca64474e4e74eb65c58eefa59ffc3 [file] [log] [blame]
Woojoong Kimeb8a7182018-01-09 12:54:38 -08001# Copyright 2017-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Woojoong Kimeb8a7182018-01-09 12:54:38 -080015- hosts: {{ instance_name }}
16 gather_facts: False
17 connection: ssh
Woojoong Kim06e455a2018-01-18 13:51:46 -080018 remote_user: ubuntu
19 become: yes
20 become_user: root
21 become_method: sudo
Woojoong Kimeb8a7182018-01-09 12:54:38 -080022 vars:
Woojoong Kim06e455a2018-01-18 13:51:46 -080023 - config_file_path: /etc/cassandra
24 - db_ip: {{ db_ip }}
25 roles:
26 - setup_cassandra_db
Woojoong Kimeb8a7182018-01-09 12:54:38 -080027