blob: 6ee36e15c0c9f22cf2e610c35867fbef825f533f [file] [log] [blame]
Matteo Scandolof0441032017-08-08 13:05:26 -07001
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 Bakerb63ea792016-08-11 10:24:48 -070017---
18- hosts: 127.0.0.1
19 connection: local
20 tasks:
21
22 - name: Create user account for "{{ name }}"
23 os_user:
Zack Williams9cb1f3a2017-08-20 19:35:03 -070024 auth:
25 auth_url: "{{ endpoint }}"
26 username: "{{ admin_user }}"
27 password: "{{ admin_password }}"
28 project_name: "{{ admin_project }}"
Scott Bakerb63ea792016-08-11 10:24:48 -070029 name: "{{ name }}"
30 email: "{{ email }}"
31 password: "{{ password }}"
Scott Bakerb63ea792016-08-11 10:24:48 -070032
33 - name: Create project for "{{ project }}"
34 os_project:
Scott Bakerb63ea792016-08-11 10:24:48 -070035 auth:
Zack Williams9cb1f3a2017-08-20 19:35:03 -070036 auth_url: "{{ endpoint }}"
37 username: "{{ admin_user }}"
38 password: "{{ admin_password }}"
39 project_name: "{{ admin_project }}"
40 name: "{{ project }}"
Scott Bakerb63ea792016-08-11 10:24:48 -070041
42{% for role in roles %}
Zack Williams9cb1f3a2017-08-20 19:35:03 -070043 - 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 Bakerb63ea792016-08-11 10:24:48 -070059 user: "{{ name }}"
60 role: "{{ role }}"
Zack Williams9cb1f3a2017-08-20 19:35:03 -070061 project: "{{ project }}"
62
Scott Bakerb63ea792016-08-11 10:24:48 -070063{% endfor %}
64