ansible-collection-prometheus/roles/postgres_exporter/vars/main.yml

10 lines
606 B
YAML
Raw Permalink Normal View History

---
_postgres_exporter_go_ansible_arch: "{{ {'i386': '386',
'x86_64': 'amd64',
'aarch64': 'arm64',
'armv7l': 'armv7',
'armv6l': 'armv6'}.get(ansible_architecture, ansible_architecture) }}"
_postgres_exporter_repo: "prometheus-community/postgres_exporter"
_github_api_headers: "{{ {'GITHUB_TOKEN': lookup('ansible.builtin.env', 'GITHUB_TOKEN')} if (lookup('ansible.builtin.env', 'GITHUB_TOKEN')) else {} }}"
_postgres_exporter_binaries: ['postgres_exporter']