-------------------------------------------------------------------------------
local object IcingaApplication "icinga" {
- cert = "my-cert.pem",
- ca = "ca.crt",
+ cert_path = "my-cert.pem",
+ ca_path = "ca.crt",
node = "192.168.0.1",
service = 7777,
}
-------------------------------------------------------------------------------
-Attribute: cert
-^^^^^^^^^^^^^^^
+Attribute: cert_path
+^^^^^^^^^^^^^^^^^^^^
This is used to specify the SSL client certificate Icinga 2 will use when
connecting to other Icinga 2 instances. This property is optional when you're
setting up a non-networked Icinga 2 instance.
-Attribute: ca
-^^^^^^^^^^^^^
+Attribute: ca_path
+^^^^^^^^^^^^^^^^^^
This is the public CA certificate that is used to verify connections from other
Icinga 2 instances. This property is optional when you're setting up a
}
}
- m_CertificateFile = Get("cert");
- m_CAFile = Get("ca");
+ m_CertificateFile = Get("cert_path");
+ m_CAFile = Get("ca_path");
m_Node = Get("node");
m_Service = Get("service");