Woojoong Kim | eb8a718 | 2018-01-09 12:54:38 -0800 | [diff] [blame] | 1 | # 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 Kim | eb8a718 | 2018-01-09 12:54:38 -0800 | [diff] [blame] | 15 | - hosts: {{ instance_name }} |
| 16 | gather_facts: False |
| 17 | connection: ssh |
Woojoong Kim | 06e455a | 2018-01-18 13:51:46 -0800 | [diff] [blame] | 18 | remote_user: ubuntu |
| 19 | become: yes |
| 20 | become_user: root |
| 21 | become_method: sudo |
Woojoong Kim | eb8a718 | 2018-01-09 12:54:38 -0800 | [diff] [blame] | 22 | vars: |
Woojoong Kim | 06e455a | 2018-01-18 13:51:46 -0800 | [diff] [blame] | 23 | - config_file_path: /etc/cassandra |
| 24 | - db_ip: {{ db_ip }} |
| 25 | roles: |
| 26 | - setup_cassandra_db |
Woojoong Kim | eb8a718 | 2018-01-09 12:54:38 -0800 | [diff] [blame] | 27 | |