Matteo Scandolo | f044103 | 2017-08-08 13:05:26 -0700 | [diff] [blame] | 1 | |
| 2 | # Copyright 2017-present Open Networking Foundation |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | |
Scott Baker | b63ea79 | 2016-08-11 10:24:48 -0700 | [diff] [blame] | 17 | --- |
| 18 | - hosts: 127.0.0.1 |
| 19 | connection: local |
| 20 | tasks: |
| 21 | |
| 22 | - name: Create user account for "{{ name }}" |
| 23 | os_user: |
Zack Williams | 9cb1f3a | 2017-08-20 19:35:03 -0700 | [diff] [blame] | 24 | auth: |
| 25 | auth_url: "{{ endpoint }}" |
| 26 | username: "{{ admin_user }}" |
| 27 | password: "{{ admin_password }}" |
| 28 | project_name: "{{ admin_project }}" |
Scott Baker | b63ea79 | 2016-08-11 10:24:48 -0700 | [diff] [blame] | 29 | name: "{{ name }}" |
| 30 | email: "{{ email }}" |
| 31 | password: "{{ password }}" |
Scott Baker | b63ea79 | 2016-08-11 10:24:48 -0700 | [diff] [blame] | 32 | |
| 33 | - name: Create project for "{{ project }}" |
| 34 | os_project: |
Scott Baker | b63ea79 | 2016-08-11 10:24:48 -0700 | [diff] [blame] | 35 | auth: |
Zack Williams | 9cb1f3a | 2017-08-20 19:35:03 -0700 | [diff] [blame] | 36 | auth_url: "{{ endpoint }}" |
| 37 | username: "{{ admin_user }}" |
| 38 | password: "{{ admin_password }}" |
| 39 | project_name: "{{ admin_project }}" |
| 40 | name: "{{ project }}" |
Scott Baker | b63ea79 | 2016-08-11 10:24:48 -0700 | [diff] [blame] | 41 | |
| 42 | {% for role in roles %} |
Zack Williams | 9cb1f3a | 2017-08-20 19:35:03 -0700 | [diff] [blame] | 43 | - name: Create role "{{ role }}" |
| 44 | os_keystone_role: |
| 45 | auth: |
| 46 | auth_url: "{{ endpoint }}" |
| 47 | username: "{{ admin_user }}" |
| 48 | password: "{{ admin_password }}" |
| 49 | project_name: "{{ admin_project }}" |
| 50 | name: "{{ role }}" |
| 51 | |
| 52 | - name: Add role "{{ role }}" to user "{{ name }}" on project "{{ project }}" |
| 53 | os_user_role: |
| 54 | auth: |
| 55 | auth_url: "{{ endpoint }}" |
| 56 | username: "{{ admin_user }}" |
| 57 | password: "{{ admin_password }}" |
| 58 | project_name: "{{ admin_project }}" |
Scott Baker | b63ea79 | 2016-08-11 10:24:48 -0700 | [diff] [blame] | 59 | user: "{{ name }}" |
| 60 | role: "{{ role }}" |
Zack Williams | 9cb1f3a | 2017-08-20 19:35:03 -0700 | [diff] [blame] | 61 | project: "{{ project }}" |
| 62 | |
Scott Baker | b63ea79 | 2016-08-11 10:24:48 -0700 | [diff] [blame] | 63 | {% endfor %} |
| 64 | |