Telegraf: New package signing key

This commit is contained in:
Jannik Beyerstedt 2023-03-11 18:37:29 +01:00
parent 002c19f3ad
commit e85b765e0e
2 changed files with 4 additions and 4 deletions

View File

@ -2,16 +2,16 @@
# Server/Telegraf: Install and Setup Telegraf Monitoring - CentOS Version
- name: telegraf - Add telegraf repo
become: yes
become: true
ansible.builtin.yum_repository:
name: influxdb
description: InfluxDB Repository
baseurl: https://repos.influxdata.com/rhel/7/\$basearch/stable
enabled: yes
gpgcheck: yes
gpgkey: https://repos.influxdata.com/influxdb.key
gpgkey: https://repos.influxdata.com/influxdata-archive_compat.key
- name: telegraf - Install telegraf
become: yes
become: true
ansible.builtin.yum:
name: telegraf
state: latest

View File

@ -9,7 +9,7 @@
- name: telegraf - Add telegraf repo key
become: yes
ansible.builtin.apt_key:
url: https://repos.influxdata.com/influxdb.key
url: https://repos.influxdata.com/influxdata-archive_compat.key
state: present
- name: telegraf - Add telegraf repo
become: yes