-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathnginx-controller-agent.yml
30 lines (30 loc) · 989 Bytes
/
nginx-controller-agent.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
- name: Install the NGINX Controller agent
hosts: all
become: true
collections:
- nginxinc.nginx_controller
vars:
nginx_controller_fqdn: "{{ controller_fqdn }}"
tasks:
- name: Retrieve the NGINX Controller auth token
include_role:
name: nginx_controller_generate_token
vars:
nginx_controller_user_email: [email protected]
nginx_controller_user_password: password123
- name: Fetch the NGINX Controller API key for agent registration
uri:
url: "https://{{ controller_fqdn }}/api/v1/platform/global"
method: GET
return_content: yes
status_code: 200
validate_certs: false
headers:
Cookie: "{{ nginx_controller_auth_token }}"
register: ctrl_globals
- name: Install the NGINX Controller agent
include_role:
name: nginx_controller_agent
vars:
nginx_controller_api_key: "{{ ctrl_globals.json.currentStatus.agentSettings.apiKey }}"