24 lines
743 B
YAML
24 lines
743 B
YAML
---
|
|
- include_tasks: "{{ role_path }}/tasks/amplify/setup-{{ ansible_os_family | lower }}.yml"
|
|
when:
|
|
- ansible_os_family == "Debian"
|
|
or ansible_os_family == "Redhat"
|
|
|
|
- name: "(Install: All OSs) Install NGINX Amplify Agent"
|
|
package:
|
|
name: nginx-amplify-agent
|
|
state: present
|
|
|
|
- name: "(Setup: All OSs) Copy NGINX Configurator Agent Configuration Template"
|
|
copy:
|
|
remote_src: yes
|
|
src: /etc/amplify-agent/agent.conf.default
|
|
dest: /etc/amplify-agent/agent.conf
|
|
|
|
- name: "(Setup: All OSs) Configure NGINX Amplify Agent API Key"
|
|
lineinfile:
|
|
dest: /etc/amplify-agent/agent.conf
|
|
regexp: api_key =.*
|
|
line: "api_key = {{ nginx_amplify_api_key }}"
|
|
notify: "(Handler: All OSs) Start NGINX Amplify Agent"
|