GithubHelp home page GithubHelp logo

doppler's Introduction

Ansible Collection - dcostakos.doppler

Ansible collection that does CRUD operations on Doppler Secrets

Review the Doppler REST API for Details

Installation

The collection uses the python requests library which should be installed.

pip install requests

You may install the collection with Ansible-Galaxy via git directly:

ansible-galaxy collection install git+https://github.com/dcostakos/doppler.git,stable-1.0.1

or simply from galaxy:

ansible-galaxy collection install dcostakos.doppler

Features

  • CRUD Operations on Secrets
  • Lookup module for secret reads
  • Anisble module for more flexibility and write/delete/update access to secrets
  • Idempotency

Modules

  • doppler_secrets: Module for CRUD Operations on Secrets
  • doppler_secrets: Lookup module for Read operations on secrets

Examples: Using this module

Some examples

 - name: Idempotent create secret with a value
    dcostakos.doppler.doppler_secrets:
      name: my_secret
      project: example-project
      config: dev
      token: "{{ doppler_token }}"
      value: "my_value"
    register: secret
- name: Test lookup plugin
    ansible.builtin.debug:
      msg: "{{ lookup('dcostakos.doppler.doppler_secrets', project='example-project', token=doppler_token, config='dev', name='my_secret') }}"
- name: Delete existing secret
  dcostakos.doppler.doppler_secrets:
    name: my_secret
    project: example-project
    config: dev
    token: "{{ doppler_token }}"
    state: absent
- name: Just validate that a secret exists, but ignore the value
  dcostakos.doppler.doppler_secrets:
    name: secret_that_exists
    project: example-project
    config: dev
    token: "{{ doppler_token }}"
    state: present
    return_value: false

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.