ansible-role-nginx/tasks/opensource/install-redhat.yml
2021-08-23 16:35:02 +02:00

21 lines
666 B
YAML

---
- name: (Amazon Linux/CentOS/RHEL) Configure NGINX repository
yum_repository:
name: nginx
baseurl: "{{ nginx_repository |
default(lookup('vars', 'nginx_default_repository_' + ((ansible_facts['distribution'] == 'Amazon') | ternary('amazon', 'redhat')))) }}"
description: NGINX Repository
enabled: true
gpgcheck: true
mode: 0644
module_hotfixes: true
when: nginx_manage_repo | bool
- name: (Amazon Linux/CentOS/RHEL) Install NGINX
yum:
name: "nginx{{ nginx_version | default('') }}"
state: "{{ nginx_state }}"
update_cache: true
ignore_errors: "{{ ansible_check_mode }}"
notify: (Handler) Run NGINX