Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .ansible-lint
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@
profile: production
exclude_paths:
- 'changelogs/'
parseable: true
use_default_rules: true
...
3 changes: 3 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ jobs:
run: tools/scripts/get_aap_gateway_and_dab.py
working-directory: ansible-platform

- name: Expose collection checkout to aap-gateway build
run: ln -s "${{ github.workspace }}/ansible-platform" "${{ github.workspace }}/aap-gateway/ansible.platform"

- name: Build the image
run: make docker-compose-build
working-directory: aap-gateway
Expand Down
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
namespace: ansible
name: platform
description: A collection of roles to manage Ansible automation platform gateway
version: 2.5.20250326
version: 2.6.20251106
readme: README.md
authors:
- automation platform gateway <aap-project@googlegroups.com> # TBD
Expand Down
8 changes: 4 additions & 4 deletions plugins/modules/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,31 +176,31 @@ def main():
module.deprecate(
msg="Configuring organizations via `ansible.platform.user` is not the recommended approach. "
"The preferred method going forward is to use the `ansible.platform.role_user_assignment` module.",
date="2026-01-31",
date="2026-05-20",
collection_name="ansible.platform",
)

if module.params["is_platform_auditor"]:
module.deprecate(
msg="Configuring auditor via `ansible.platform.user` is not the recommended approach. "
"The preferred method going forward is to use the `ansible.platform.role_user_assignment` module.",
date="2026-01-31",
date="2026-05-20",
collection_name="ansible.platform",
)

if module.params["authenticator_uid"]:
module.deprecate(
msg="The 'authenticator_uid' parameter is deprecated and will be removed in a future version. "
"Please use 'associated_authenticators' instead to specify UIDs per authenticator.",
date="2026-01-31",
date="2026-05-20",
collection_name="ansible.platform",
)

if module.params["authenticators"]:
module.deprecate(
msg="The 'authenticators' parameter is deprecated and will be removed in a future version. "
"Please use 'associated_authenticators' instead to specify authenticator associations.",
date="2026-01-31",
date="2026-05-20",
collection_name="ansible.platform",
)

Expand Down
Loading