ansible-bitwarden-lookup-plugin
Ansible lookup plugin for retrieval of secrets in a Bitwarden vault with increased performance
File Explorer
- main.yml
- main.yml
- __init__.py
- bitwarden.py
- bitwarden_test.py
- main.yml
- testfile.txt.j2
- data.json
- test_default.py
- Dockerfile.j2
- INSTALL.rst
- molecule.yml
- playbook.yml
- dev.txt
- main.yml
- main.yml
- .gitignore
- .yamllint
- LICENSE
- pytest.ini
- README.md
- requirements.txt
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
docker
View Details ▼
docker
Manage Docker containers and images.
Some subcommands such as `container` and `image` have their own usage documentation.
docker {{[ps|container ls]}} {{[-a|--all]}}
List all Docker containers (running and stopped):
docker {{[run|container run]}} --name {{container_name}} {{image}}
Start a container from an image, with a custom name:
docker container {{start|stop}} {{container_name}}
Start or stop an existing container:
molecule
View Details ▼
molecule
Molecule helps testing Ansible roles.
molecule init role --role-name {{role_name}}
Create a new Ansible role:
molecule test
Run tests:
molecule create
Start the instance:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
pip3
View Details ▼
pip3
This command is an alias of `pip`.
tldr pip
View documentation for the original command:
pytest
View Details ▼
pytest
Run Python tests.
pytest {{path/to/test_file1.py path/to/test_file2.py ...}}
Run tests from specific files:
pytest -k {{expression}}
Run tests with names matching a specific [k]eyword expression:
pytest {{[-x|--exitfirst]}}
Exit as soon as a test fails or encounters an error:
