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

View File

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