2025-10-29 20:20:44 +00:00
|
|
|
---
|
|
|
|
|
- name: Install dependencies
|
|
|
|
|
apt:
|
|
|
|
|
name: [python3-pip, prometheus-node-exporter]
|
|
|
|
|
state: present
|
|
|
|
|
|
|
|
|
|
- name: Copy Prometheus config
|
|
|
|
|
template:
|
|
|
|
|
src: prometheus.yml.j2
|
|
|
|
|
dest: /etc/prometheus/prometheus.yml
|
|
|
|
|
notify: restart prometheus
|
2025-12-08 17:22:55 +00:00
|
|
|
|
|
|
|
|
- name: Configure AWS credentials from vault
|
|
|
|
|
template:
|
|
|
|
|
src: aws_credentials.j2
|
|
|
|
|
dest: /home/galion/.aws/credentials
|
|
|
|
|
mode: '0600'
|