-
Feature Request
-
Resolution: Unresolved
-
Undefined
-
None
-
2.5, 2.6
-
False
-
-
False
Collection Link - https://console.redhat.com/ansible/automation-hub/repo/published/ansible/platform/content/module/authenticator/
We have a need of automating the configuration of our IDP configuration which changes it's public key frequently.
However when trying to do this with the ansible.platform.authenticator module it errors out when not additional values are provided.
This should not be required as we only want to change one value. Unsure if this is an API or module limitation.
- name: Update public key ansible.platform.authenticator: aap_username: "{{ aap_username }}" aap_password: "{{ aap_password }}" aap_hostname: "{{ aap_hostname }}" name: "SSO" configuration: PUBLIC_KEY: "{{ keycloak_response.json.public_key }}"
When I try this I get the following error:
fatal: [aap.example.com]: FAILED! => {"changed": false, "msg": "c{'KEY': ['This field is required.'], 'SECRET': ['This field is required.']}"}
Ask:
The collection should support updating only a single variable under the configuration section, specifically PUBLIC_KEY.