Ansible: Как вывести число вместо строки в JSON - модуль URI - PullRequest
0 голосов
/ 14 ноября 2018

Привет, Мне нужно напечатать переменную как число вместо строки. Пример:

- name: Create input
  uri:
    url: "https://{{ url_graylog }}/api/system/inputs"
    ...
    body_format: json
    body:
      title: "{{ name }}"
      configuration:
      bind_address: "0.0.0.0"
      port: "{{ port }}"  <-- its print as string, I need number
    global: true

Я пытался

port: {{ port }}          <-- not work
port: "{{ port | int }}"  <-- not work

Есть идеи? Спасибо!

1 Ответ

0 голосов
/ 22 февраля 2019

Вы можете установить в ansible.cfg: jinja2_native = True

...