A role to install and configure 1Password Connect.
- Docker and Docker Compose
server_port
: 1Password Connect API server port (Optional).credentials_file
: The name of the 1Password credentials file template file (Optional). This file is used to authenticate with 1Password.
- hosts: all
tasks:
- ansible.builtin.include_role:
name: ansible-1password-connect
vars:
server_port: 8080
credentials_file: 1password_credentials.j2
In order to have a verioning in place and working, create leightweight tags that point to the appropriate minor release versions.
Creating a new minor release:
git tag v2
git push --tags
Replacing an already existing minor release:
git tag -d v2
git push origin :refs/tags/v2
git tag v2
git push --tags