Ansible core collection for Delinea Secret Server.
| Name | Description |
|---|---|
| delinea.platform_secretserver.tss | Look up secrets from Delinea Secret Server. |
This collection requires the python-tss-sdk library to interact with Delinea Secret Server. You must install this Python package in your environment:
pip install python-tss-sdkTo use platform authentication, python-tss-sdk must be version 2.0.1 or higher.
Refer to the python-tss-sdk documentation for more details and advanced usage.
Before using this collection, you need to install it with the Ansible Galaxy command-line tool:
ansible-galaxy collection install delinea.platform_secretserverYou can also include it in a requirements.yml file and install it with
ansible-galaxy collection install -r requirements.yml, using the format:
---
collections:
- name: delinea.platform_secretserverNote that if you install the collection from Ansible Galaxy, it will not be upgraded
automatically when you upgrade the ansible package. To upgrade the collection to
the latest available version, run the following command:
ansible-galaxy collection install delinea.platform_secretserver --upgradeYou can also install a specific version of the collection, for example, if you need
to downgrade when something is broken in the latest version (please report an issue
in this repository). Use the following syntax to install version 1.0.0:
ansible-galaxy collection install delinea.platform_secretserver:==1.0.0See Ansible Using collections for more details.
Read the Development Guide to learn about our build, test, and release processes.