From 8d4d6fa486bdbc6ade9ce62cceb75df716e18d2e Mon Sep 17 00:00:00 2001 From: Victor Vrantchan Date: Thu, 23 Feb 2017 13:46:34 -0500 Subject: [PATCH] update flag documentation (#1280) updates documentation to account for changes introduced in #1266 --- docs/infrastructure/configuring-the-kolide-binary.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/infrastructure/configuring-the-kolide-binary.md b/docs/infrastructure/configuring-the-kolide-binary.md index df526add9f..8a9ec3049e 100644 --- a/docs/infrastructure/configuring-the-kolide-binary.md +++ b/docs/infrastructure/configuring-the-kolide-binary.md @@ -169,20 +169,20 @@ The path to a PEM encoded certificate of MYSQL's CA for client certificate authe ``` mysql: - ca: /path/to/server-ca.pem + tls_ca: /path/to/server-ca.pem ``` -##### `mysql_tls_certificate` +##### `mysql_tls_cert` The path to a PEM encoded certificate use for tls authentication. - Default value: none -- Environment variable: `KOLIDE_MYSQL_TLS_CERTIFICATE` +- Environment variable: `KOLIDE_MYSQL_TLS_CERT` - Config file format: ``` mysql: - cert: /path/to/certificate.pem + tls_cert: /path/to/certificate.pem ``` ##### `mysql_tls_key` @@ -195,7 +195,7 @@ The path to a PEM encoded private key use for tls authentication. ``` mysql: - key: /path/to/key.pem + tls_key: /path/to/key.pem ``` ##### `mysql_tls_config` @@ -208,7 +208,7 @@ The tls value in a MYSQL DSN. Can be `true`,`false`,`skip-verify` or the CN valu ``` mysql: - tlsconfig: true + tls_config: true ``` ##### `mysql_tls_server_name`