public-health-ch/ansible/roles/nginxinc.nginx/tasks/amplify/setup-redhat.yml

10 lines
353 B
YAML
Raw Normal View History

2020-05-15 22:14:14 +00:00
---
2021-02-20 14:00:27 +00:00
- name: (Amazon Linux/CentOS/RHEL) Add NGINX Amplify agent repository
2020-05-15 22:14:14 +00:00
yum_repository:
name: nginx-amplify
2021-02-20 14:00:27 +00:00
baseurl: http://packages.amplify.nginx.com/{{ (ansible_facts['distribution'] == "Amazon") | ternary('amzn/', 'centos/') }}/$releasever/$basearch/
2020-05-15 22:14:14 +00:00
description: NGINX Amplify Agent
enabled: yes
gpgcheck: yes
2021-02-20 14:00:27 +00:00
mode: 0644