如何从ansible结果中获取变量

How to get variables from ansible result

我有一个 shell 脚本,其输出是以下格式的回显
<variable_1>;<variable_2>;<variable_3>

我想使用这些变量和运行一个mysql查询来像这样更新数据库
mysql -u<user> -p<password> -h<host> -e'insert into test_table values ("variable_1","variable_2","variable_3")'

我的 ansible 剧本如下所示。

---
- hosts: infoServers
  sudo: yes
  gather_facts: no
  tasks:
  - name: gather info
    script: get_hostdata.sh
    register: result
  - name: print result
    local_action: command mysql -uuser -ppassword -h192.168.101.10 ansible_db -e'insert into test_table values ("{{ item[0] }}","{{ item[1] }}","{{ item[3] }});'
    with_items: [ result.stdout.split(';')[0], result.stdout.split(';')[1], result.stdout.split(';')[2] ]

错误:加载 YAML 脚本时出现语法错误,test_variables.yml

基本上我希望能够使用 shell 命令的输出,将其拆分为一些变量并能够在进一步的 ansible 操作中使用它们。 你能指导我如何正确访问变量吗?

谢谢

当您遇到这样的错误时,您确实应该提供错误消息的完整详细信息。当我将你的剧本剪切并粘贴到一个文件中并尝试 运行 它时,我得到了以下内容:

ERROR: Syntax Error while loading YAML script, ff.yml
Note: The error may actually appear before this position: line 11, column 43

    local_action: command mysql -uuser -ppassword -h192.168.101.10 ansible_db -e'insert into test_table values ("{{ item[0] }}","{{ item[1] }}","{{ item[3] }});'
    with_items: [ result.stdout.split(';')[0], result.stdout.split(';')[1], result.stdout.split(';')[2] ]
                                          ^

看来,如果这与您收到的完整错误匹配,则表明您的 with_items 子句的语法是错误的。

我不确定你为什么要尝试使用 with_items 来做到这一点。在这种情况下,您实际上所做的只是一些不必要的变量替换。以下内容也应该完全符合您的要求:

- name: print result
    local_action: command mysql -uuser -ppassword -h192.168.101.10 ansible_db -e'insert into test_table values ("{{ result.stdout.split(';')[0] }}","{{ result.stdout.split(';')[1] }}","{{ result.stdout.split(';')[2] }}");'

您需要正确引用和使用{{}}

- hosts: localhost
  tags: s16
  gather_facts: no
  tasks:
  - shell: echo 'variable_1;variable_2;variable_3'
    register: result
  - local_action: debug msg="values ("{{ item[0] }}","{{ item[1] }}","{{ item[3] }}");'"
    with_items: [ "{{result.stdout.split(';')[0]}}", "{{result.stdout.split(';')[1]}}", "{{result.stdout.split(';')[2]}}" ]

将打印如下内容:

TASK: [debug msg="values ("{{ item[0] }}","{{ item[1] }}","{{ item[3] }}");'"] *** 
ok: [localhost -> 127.0.0.1] => (item=variable_1) => {
    "item": "variable_1", 
    "msg": "values (\"v\",\"a\",\"i\");'"
}
ok: [localhost -> 127.0.0.1] => (item=variable_2) => {
    "item": "variable_2", 
    "msg": "values (\"v\",\"a\",\"i\");'"
}
ok: [localhost -> 127.0.0.1] => (item=variable_3) => {
    "item": "variable_3", 
    "msg": "values (\"v\",\"a\",\"i\");'"
}

正如您在 item[0], .., item[2] 中看到的那样,您正在索引字符串 "variable_1" 而不是数组 ["variable_1","variable_2","variable_3"]

最简单(并且性能更高)的方法是:

- hosts: localhost
  tags: s17
  gather_facts: no
  tasks:
  - shell: echo 'variable_1;variable_2;variable_3'
    register: result
- debug: msg="insert into tt values ("{{result.stdout|replace(';', '","')}}");'"