fbraz3/ansible-vault-tool

By fbraz3

Updated 1 day ago

Ansible Vault encryption / decryption tool

Image
Security
Integration & delivery
Developer tools
0

2.4K

fbraz3/ansible-vault-tool repository overview

Docker Build Docker Image Ask DeepWiki

Braz Ansible Vault Tool

This is a simple online Ansible Vault encryption/decryption tool. You can encrypt or decrypt any information using the online interface or API tools provided.

Objective

The goal of this project is to provide a secure and user-friendly tool for encrypting and decrypting data using Ansible Vault.

Usage

The quickest way to get started is by using the online interface. https://ansible-vault.braz.dev/

⚠️ No data is stored or logged when running the project locally or using the online interface.

Local Setup
  1. Clone the repository.
  2. Install dependencies and run the application:
    npm install
    npm start
    
  3. Access the application at http://localhost:3000.
Docker Setup
  1. Navigate to the docker directory:
    cd docker
    
  2. Start the application using Docker Compose:
    docker-compose up -d
    
  3. Access the application at http://localhost:3003.
Pre-built Docker Images

Ready-to-use Docker images are automatically built weekly and available on Docker Hub

Quick Start with Docker
# Run directly with Docker
docker run -p 3000:3000 fbraz3/ansible-vault-tool:latest
Docker Compose Example
version: '3.8'
services:
  ansible-vault-tool:
    image: fbraz3/ansible-vault-tool:latest
    ports:
      - "3000:3000"
    restart: unless-stopped

Available tags:

  • latest - Latest stable build from master branch
  • YYYY.MM.DD - Weekly builds with date tag
  • master-<sha> - Builds from specific commits

Contribution

Contributions are welcome! Feel free to open issues or submit pull requests to improve the project.

Please visit the CONTRIBUTING.md file for guidelines on how to contribute to this project.

Donation

I spend a lot of time and effort maintaining this project. If you find it useful, consider supporting me with a donation:

License

This project is licensed under the Apache License 2.0, so you can use it for personal and commercial projects. However, please note that the images are provided "as is" without any warranty or guarantee of any kind. Use them at your own risk.

Tag summary

Content type

Image

Digest

sha256:332406153

Size

44 MB

Last updated

1 day ago

docker pull fbraz3/ansible-vault-tool