You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously, the roles were incorrectly using the same parameter for tls_subject (for
web form/API) and tlsserversubject, thus the setup ending up being
incorrect.
Co-authored-by: Cédric Villemain <[email protected]>
Copy file name to clipboardExpand all lines: roles/zabbix_agent/defaults/main.yml
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -148,6 +148,7 @@ zabbix_agent_tlscafile:
148
148
zabbix_agent_tlscrlfile:
149
149
zabbix_agent_tlsservercertissuer:
150
150
zabbix_agent_tlsservercertsubject:
151
+
zabbix_agent_tls_subject: "{{ zabbix_agent_tlsservercertsubject }}"# FIXME this is not correct and should be removed with 2.0.0, here only to prevent regression
151
152
zabbix_agent_tlscertfile:
152
153
zabbix_agent_tlskeyfile:
153
154
zabbix_agent_tlspskidentity:
@@ -201,6 +202,7 @@ zabbix_agent2_tlscafile:
201
202
zabbix_agent2_tlscrlfile:
202
203
zabbix_agent2_tlsservercertissuer:
203
204
zabbix_agent2_tlsservercertsubject:
205
+
zabbix_agent2_tls_subject: "{{ zabbix_agent2_tlsservercertsubject }}"# FIXME this is not correct and should be removed with 2.0.0, here only to prevent regression
Copy file name to clipboardExpand all lines: roles/zabbix_proxy/defaults/main.yml
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -140,6 +140,7 @@ zabbix_proxy_tlscafile:
140
140
zabbix_proxy_tlscrlfile:
141
141
zabbix_proxy_tlsservercertissuer:
142
142
zabbix_proxy_tlsservercertsubject:
143
+
zabbix_proxy_tls_subject: "{{ zabbix_proxy_tlsservercertsubject }}"# FIXME this is not correct and should be removed with 2.0.0, here only to prevent regression
0 commit comments