Giter Club home page Giter Club logo

Comments (4)

dawidd6 avatar dawidd6 commented on June 19, 2024

Okay, and you are 100% sure it is an issue with the action and not Ansible?

from action-ansible-playbook.

mysten-labs-charles-murphy avatar mysten-labs-charles-murphy commented on June 19, 2024

@dawidd6 Sorry for the late response.

Here is my ansible playbook CLI:

ansible-playbook [core 2.12.10]
  config file = None
  configured module search path = ['/Users/charles.murphy/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
  ansible python module location = /opt/homebrew/lib/python3.11/site-packages/ansible
  ansible collection location = /Users/charles.murphy/.ansible/collections:/usr/share/ansible/collections
  executable location = /opt/homebrew/bin/ansible-playbook
  python version = 3.11.4 (main, Jul 25 2023, 17:36:13) [Clang 14.0.3 (clang-1403.0.22.14.1)]
  jinja version = 3.1.2
  libyaml = True

Here is a playbook:

- name: Show ansible vars
  debug:
    var: vars['{{item}}']
  loop:
    - 'abc'
    - 'string'
    - 'boolean'

Here is my command:

➜  ansible git:(ecr-pull-user-playbook) ✗ ansible-playbook sui/sanity.local.yaml -e '{"abc": "xyz", "string": "true", "boolean": true}'
[WARNING]: No inventory was parsed, only implicit localhost is available
[WARNING]: provided hosts list is empty, only localhost is available. Note that the implicit localhost does not match 'all'

PLAY [Sanity Test (local)] *****************************************************************************************************************************************************

TASK [Gathering Facts] *********************************************************************************************************************************************************
ok: [localhost]

TASK [sanity : Show ansible vars] **********************************************************************************************************************************************
ok: [localhost] => (item=abc) => {
    "ansible_loop_var": "item",
    "item": "abc",
    "vars['abc']": "xyz"
}
ok: [localhost] => (item=string) => {
    "ansible_loop_var": "item",
    "item": "string",
    "vars['string']": "true"
}
ok: [localhost] => (item=boolean) => {
    "ansible_loop_var": "item",
    "item": "boolean",
    "vars['boolean']": true
}

TASK [Run tree command on selected directories] ********************************************************************************************************************************
skipping: [localhost]

PLAY RECAP *********************************************************************************************************************************************************************
localhost                  : ok=2    changed=0    unreachable=0    failed=0    skipped=1    rescued=0    ignored=0   

This works as expected on the command line.

from action-ansible-playbook.

dawidd6 avatar dawidd6 commented on June 19, 2024

Don't know if that makes any difference, but in the action input you are surrounding your extra vars with double quotes and in the cli it is single quotes. Try using the same quotes here and there.

from action-ansible-playbook.

mysten-labs-charles-murphy avatar mysten-labs-charles-murphy commented on June 19, 2024

ok, thanks. i will try it next time i run into the problem.

from action-ansible-playbook.

Related Issues (20)

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.