Setup
To set up the integration between Red Hat Ansible and Secret Server or the Delinea Platform, you have two options:
-
You can install the Delinea Ansible plugin within the Ansible Community General Collection. For information about installing the Community General Collection, see the
README.mdfile in the Ansible Community General Collection GitHub repository. -
You can install the Delinea Ansible collection from Ansible Galaxy. The following section describes how to do this.
Installing the Delinea Ansible Collection
Before you starting using the Delinea Ansible collection, you must install it from Ansible Galaxy.
To install the Delinea Ansible collection:
-
Run the following command:
ansible-galaxy collection install delinea.platform_secretserverYou can also include the collection in arequirements.ymlfile, using the following format and then runansible-galaxy collection install -r requirements.ymlto install the collection.Copy---
collections:
- name: delinea.ss -
To upgrade the collection to the latest available version, run:
ansible-galaxy collection install delinea.platform_secretserver --upgrade -
To install a specific version of the collection (for example, v. 1.0.0), run:
ansible-galaxy collection install delinea.platform_secretserver:==1.0.0