Skip to content

Commit 65f8b7e

Browse files
authored
Merge branch 'main' into debootstrap
2 parents 578b93c + d10c921 commit 65f8b7e

File tree

2 files changed

+6
-14
lines changed

2 files changed

+6
-14
lines changed

roles/os_flavors/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ may contain 'ephemeral', 'flavorid', 'rxtx_factor' and 'swap' items.
3232
Optionally, the dict may also contain an item 'extra_specs', which is a dict of
3333
metadata to attach to the flavor object.
3434

35-
`is_public` default is `true`. It is a mandatory parameter when mapping flavor
36-
to project, and it have to be set to `false` in that case. Non public
37-
flavor can't be mapped. However there is possibility to create flavor which
35+
`is_public` default is `true`. It is a mandatory parameter when mapping
36+
flavor to project, and it have to be set to `false` in that case. Public
37+
flavor can't be mapped. However there is possibility to create flavor which
3838
is private and not mapped to any project. Only 'true' and 'false' are
3939
allowed here.
4040

roles/os_projects/tasks/users.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@
2020
vars:
2121
domain_is_id: "{{ project.user_domain in os_projects_domain_to_id.values() }}"
2222
loop_control:
23-
label:
24-
project: "{{ project.name }}"
25-
user: "{{ item.name }}"
23+
label: "{{ project.name }}: {{ item.name }}"
2624

2725
- name: Ensure users have required project roles
2826
openstack.cloud.role_assignment:
@@ -41,10 +39,7 @@
4139
- skip_missing: true
4240
environment: "{{ os_projects_environment }}"
4341
loop_control:
44-
label:
45-
project: "{{ project.name }}"
46-
user: "{{ item.0.name }}"
47-
role: "{{ item.1 }}"
42+
label: "{{ project.name }}: {{ item.0.name }}: {{ item.1 }}"
4843

4944
- name: Ensure users have required domain roles
5045
openstack.cloud.role_assignment:
@@ -65,7 +60,4 @@
6560
vars:
6661
domain_is_id: "{{ project.user_domain in os_projects_domain_to_id.values() }}"
6762
loop_control:
68-
label:
69-
domain: "{{ project.user_domain }}"
70-
user: "{{ item.0.name }}"
71-
role: "{{ item.1 }}"
63+
label: "{{ project.user_domain }}: {{ item.0.name }}: {{ item.1 }}"

0 commit comments

Comments
 (0)