Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/delineaxpm/ansible-core-collection
Ansible collection for Delinea DevOps Secrets Vault
https://github.com/delineaxpm/ansible-core-collection
Last synced: 12 days ago
JSON representation
Ansible collection for Delinea DevOps Secrets Vault
- Host: GitHub
- URL: https://github.com/delineaxpm/ansible-core-collection
- Owner: DelineaXPM
- License: gpl-3.0
- Created: 2022-08-15T22:03:42.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-29T22:09:19.000Z (11 months ago)
- Last Synced: 2024-01-30T18:27:45.269Z (11 months ago)
- Language: Go
- Homepage:
- Size: 3.38 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.rst
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Ansible Collection - delinea.core
![GitHub pull requests](https://img.shields.io/github/issues-pr-raw/delineaxpm/ansible-core-collection?style=for-the-badge)
Ansible core collection for Delinea DevOps Secrets Vault.
## Included content
### Lookup plugins
| Name | Description |
| ------------------------------- | -------------------------------------------------- |
| [delinea.core.dsv](docs/dsv.md) | Look up secrets from Delinea DevOps Secrets Vault. |## 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.core
```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.core
```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.core --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.core:==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.