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 / set-internal-var.frecklet
Size: Mime:
doc:
  short_help: Sets a nsbl-connector internal variable.
  help: |
    Sets a nsbl-connector internal variable. This is mainly useful for debugging, but also has a few other uses
    if you are in a pinch. Usually it's best to not have to use this.

args:
  var:
    doc:
      short_help: the var name
    type: string
    required: true
    empty: false
  value:
    doc:
      short_help: the value
    type: string
    required: true

frecklets:
- task:
    type: ansible-module
  frecklet:
    name: set_fact
    msg: 'setting internal var {{:: var ::}}'
  vars:
    '{{:: var ::}}': '{{:: value ::}}'
meta: {}