Skip to content
Snippets Groups Projects
Commit 1bfd5d26 authored by Benguria Elguezabal, Gorka's avatar Benguria Elguezabal, Gorka
Browse files

load variables from env that will be provided by iem

parent 5c82ece0
No related branches found
No related tags found
1 merge request!1Monitoring
...@@ -3,6 +3,11 @@ ...@@ -3,6 +3,11 @@
input: input:
- instance_ip_vm1 - instance_ip_vm1
- instance_server_private_key_user1 - instance_server_private_key_user1
- DEPLOYMENT_ID
- INFLUXDB_BUCKET
- INFLUXDB_TOKEN
- INFLUXDB_ORG
- INFLUXDB_ADDR
output: [] output: []
engine: ansible engine: ansible
... ...
pma_deployment_id: "123e4567-e89b-12d3-a456-426614174002" pma_deployment_id: "{{ lookup('env', 'DEPLOYMENT_ID' ) | '123e4567-e89b-12d3-a456-426614174002' }}"
pma_influxdb_bucket: "bucket" pma_influxdb_bucket: "{{ lookup('env', 'INFLUXDB_BUCKET' ) | 'bucket' }}"
pma_influxdb_token: "piacerePassword" pma_influxdb_token: "{{ lookup('env', 'INFLUXDB_TOKEN' ) | 'piacerePassword' }}"
pma_influxdb_org: "piacere" pma_influxdb_org: "{{ lookup('env', 'INFLUXDB_ORG' ) | 'piacere' }}"
pma_influxdb_addr: "https://influxdb.pm.ci.piacere.digital.tecnalia.dev" pma_influxdb_addr: "{{ lookup('env', 'INFLUXDB_ADDR' ) | 'https://influxdb.pm.ci.piacere.digital.tecnalia.dev' }}"
telegraf_agent_package_state: latest telegraf_agent_package_state: latest
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment