diff --git a/README.md b/README.md index f985d89c3..19580381f 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ collections: | Collection Name | Purpose | |:-----------------------------------------------------------------------------------:|:-----------------------------:| -| ansible.platform repo (no public repo for this collection) | gateway/platform modules | +| [ansible.platform repo](https://github.com/ansible/ansible.platform) | gateway/platform modules | | [ansible.hub repo](https://github.com/ansible-collections/ansible_hub) | Automation hub modules | | [ansible.controller repo](https://github.com/ansible/awx/tree/devel/awx_collection) | Automation controller modules | | [ansible.eda repo](https://github.com/ansible/event-driven-ansible) | Event Driven Ansible modules | diff --git a/changelogs/fragments/new_dispatch_roles.yml b/changelogs/fragments/new_dispatch_roles.yml new file mode 100644 index 000000000..326ced511 --- /dev/null +++ b/changelogs/fragments/new_dispatch_roles.yml @@ -0,0 +1,7 @@ +--- +bugfixes: + - Added `gateway_role_team_assignments` role to dispatch roles + - Added `gateway_role_definitions` role to dispatch roles +trivial: + - Updated main readme to link to the now public ansible.platform repo +... diff --git a/roles/dispatch/README.md b/roles/dispatch/README.md index ffd39538b..0b55b3d66 100644 --- a/roles/dispatch/README.md +++ b/roles/dispatch/README.md @@ -134,18 +134,18 @@ gateway_configuration_dispatcher_roles: - role: gateway_settings var: gateway_settings tags: settings - - role: gateway_applications - var: aap_applications - tags: applications - - role: gateway_http_ports - var: gateway_http_ports - tags: http_ports - role: gateway_organizations var: aap_organizations tags: organizations assign_galaxy_credentials_to_org: false assign_default_ee_to_org: false assign_notification_templates_to_org: false + - role: gateway_applications + var: aap_applications + tags: applications + - role: gateway_http_ports + var: gateway_http_ports + tags: http_ports - role: gateway_service_clusters var: gateway_service_clusters tags: service_clusters @@ -158,18 +158,24 @@ gateway_configuration_dispatcher_roles: - role: gateway_services var: gateway_services tags: services - - role: gateway_role_user_assignments - var: gateway_role_user_assignments - tags: role_user_assignments - - role: gateway_routes - var: gateway_routes - tags: routes - role: gateway_teams var: aap_teams tags: teams - role: gateway_users var: aap_user_accounts tags: users + - role: gateway_role_definitions + var: gateway_role_definitions + tags: role_definitions + - role: gateway_role_team_assignments + var: gateway_role_team_assignments + tags: role_team_assignments + - role: gateway_role_user_assignments + var: gateway_role_user_assignments + tags: role_user_assignments + - role: gateway_routes + var: gateway_routes + tags: routes ``` #### Hub Roles diff --git a/roles/dispatch/defaults/main.yml b/roles/dispatch/defaults/main.yml index e9aa29b8e..3cc8b747c 100644 --- a/roles/dispatch/defaults/main.yml +++ b/roles/dispatch/defaults/main.yml @@ -40,6 +40,12 @@ gateway_configuration_dispatcher_roles: - role: gateway_users var: aap_user_accounts tags: users + - role: gateway_role_definitions + var: gateway_role_definitions + tags: role_definitions + - role: gateway_role_team_assignments + var: gateway_role_team_assignments + tags: role_team_assignments - role: gateway_role_user_assignments var: gateway_role_user_assignments tags: role_user_assignments diff --git a/roles/dispatch/meta/argument_specs.yml b/roles/dispatch/meta/argument_specs.yml index ed357ecb9..1d308b89c 100644 --- a/roles/dispatch/meta/argument_specs.yml +++ b/roles/dispatch/meta/argument_specs.yml @@ -47,6 +47,12 @@ argument_specs: - role: gateway_role_user_assignments var: gateway_role_user_assignments tags: role_user_assignments + - role: gateway_role_team_assignments + var: gateway_role_team_assignments + tags: role_team_assignments + - role: gateway_role_definitions + var: gateway_role_definitions + tags: role_definitions - role: gateway_routes var: gateway_routes tags: routes