Tadas Sutkaitis | 7a28658 | 2024-05-01 02:12:08 +0300 | [diff] [blame] | 1 | # Copyright (c) 2024 VEXXHOST, Inc. |
okozachenko | 0c48e9c | 2022-05-19 01:57:57 +1000 | [diff] [blame] | 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 4 | # not use this file except in compliance with the License. You may obtain |
| 5 | # 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, WITHOUT |
| 11 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 12 | # License for the specific language governing permissions and limitations |
| 13 | # under the License. |
| 14 | |
okozachenko | 0c48e9c | 2022-05-19 01:57:57 +1000 | [diff] [blame] | 15 | - name: Install openstacksdk |
| 16 | ansible.builtin.pip: |
Tadas Sutkaitis | 7a28658 | 2024-05-01 02:12:08 +0300 | [diff] [blame] | 17 | name: openstacksdk |
Mohammed Naser | 8ccabb6 | 2025-02-05 13:20:09 -0500 | [diff] [blame] | 18 | version: "{{ openstacksdk_version | default(omit) }}" |
okozachenko | 0c48e9c | 2022-05-19 01:57:57 +1000 | [diff] [blame] | 19 | |
| 20 | - name: Create openstack config directory |
| 21 | become: true |
| 22 | ansible.builtin.file: |
| 23 | path: /etc/openstack |
| 24 | state: directory |
| 25 | owner: root |
| 26 | group: root |
Mohammed Naser | c8e1a45 | 2022-08-11 16:16:13 -0400 | [diff] [blame] | 27 | mode: "0600" |
okozachenko | 0c48e9c | 2022-05-19 01:57:57 +1000 | [diff] [blame] | 28 | |
| 29 | - name: Generate cloud config file |
| 30 | become: true |
| 31 | ansible.builtin.template: |
| 32 | src: clouds.yaml.j2 |
| 33 | dest: /etc/openstack/clouds.yaml |
| 34 | owner: root |
| 35 | group: root |
Tadas Sutkaitis | 7a28658 | 2024-05-01 02:12:08 +0300 | [diff] [blame] | 36 | mode: "0600" |