Skip to content

Commit

Permalink
modified: roles/dispatch/README.md (#945)
Browse files Browse the repository at this point in the history
modified:   roles/gateway_users/tasks/main.yml
	modified:   tests/configs/user_accounts.yml
  • Loading branch information
djdanielsson authored Oct 22, 2024
1 parent 1b33bd5 commit 1e386f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion roles/dispatch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Each role has its own variables, for information on those please see each role w
```yaml
gateway_dispatch_roles:
- {role: settings, var: settings_list, tags: settings}
- {role: users, var: users_list, tags: users}
- {role: users, var: aap_user_accounts, tags: users}
- {role: authenticators, var: authenticators_list, tags: authenticators}
- {role: authenticator_maps, var: authenticator_maps_list, tags: authenticator_maps}
- {role: http_ports, var: http_ports_list, tags: http_ports}
Expand Down
2 changes: 1 addition & 1 deletion roles/gateway_users/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
gateway_token: "{{ aap_token | default(omit, true) }}"
gateway_request_timeout: "{{ aap_request_timeout | default(omit, true) }}"
gateway_validate_certs: "{{ aap_validate_certs | default(omit) }}"
loop: "{{ users if users is defined else users_list }}"
loop: "{{ aap_user_accounts }}"
loop_control:
loop_var: __gateway_user_accounts_item
label: "{{ __operation.verb }} the label {{ __gateway_user_accounts_item.name }} to Controller"
Expand Down
2 changes: 1 addition & 1 deletion tests/configs/user_accounts.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
users_list:
aap_user_accounts:
- user: controller_user
is_superuser: false
password: aap_password
Expand Down

0 comments on commit 1e386f3

Please sign in to comment.