Привет,
Мне нужно напечатать переменную как число вместо строки.
Пример:
- 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
Есть идеи? Спасибо!