Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
pycklets / resources / frecklet / debug-secret-var.frecklet
Size: Mime:
#!/usr/bin/env frecklecute

doc:
  short_help: Displays the content of a secret variable.
  help: |
    Displays the content of a secret variable.

    You most likely don't need this, this is really only for development.

args:
  var:
    type: string
    required: true
    secret: true
    doc:
      short_help: the Ansible variable name to debug
    cli:
      param_type: argument

meta:
  tags:
  - debug

frecklets:
- frecklet:
    type: ansible-module
    name: debug
    desc:
      short: display secret value of a var
      references:
        "'debug' Ansible module": https://docs.ansible.com/ansible/latest/modules/debug_module.html
    properties:
      idempotent: false
      become: false
      internet: false
  vars:
    var: '{{:: var ::}}'