Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/delineaxpm/ansible-ss-collection
https://github.com/delineaxpm/ansible-ss-collection
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/delineaxpm/ansible-ss-collection
- Owner: DelineaXPM
- License: gpl-3.0
- Created: 2023-08-22T00:54:38.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-09T06:31:24.000Z (11 months ago)
- Last Synced: 2024-02-09T07:47:01.777Z (11 months ago)
- Language: Python
- Size: 52.7 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.rst
- License: LICENSE
Awesome Lists containing this project
README
# Ansible Collection - delinea.ss
![GitHub pull requests](https://img.shields.io/github/issues-pr-raw/delineaxpm/ansible-ss-collection?style=for-the-badge)
Ansible core collection for Delinea Secret Server.
## Included content
### Lookup plugins
| Name | Description |
| ------------------------------- | -------------------------------------------------- |
| [delinea.ss.tss](docs/tss.md) | Look up secrets from Delinea Secret Server. |## Using this collection
### Installing the Collection from Ansible Galaxy
Before using this collection, you need to install it with the Ansible Galaxy command-line tool:
```shell
ansible-galaxy collection install delinea.ss
```You can also include it in a `requirements.yml` file and install it with
`ansible-galaxy collection install -r requirements.yml`, using the format:```yaml
---
collections:
- name: delinea.ss
```Note 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:```shell
ansible-galaxy collection install delinea.ss --upgrade
```You 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`:```shell
ansible-galaxy collection install delinea.ss:==1.0.0
```See [Ansible Using collections](https://docs.ansible.com/ansible/devel/user_guide/collections_using.html) for more details.
## Contributing
Read the [Development Guide](DEVELOPER.md) to learn about our build, test, and release processes.