From 6503a7dc47ef23bfb38100ac70632de1025403fe Mon Sep 17 00:00:00 2001 From: Jonathan Hooper Date: Mon, 10 Sep 2018 09:02:34 -0500 Subject: [PATCH] Use strings values in webauthn config in application.yml **Why**: Figaro prefers strings for the config values and will convert the booleans into strings. This reduces confusion. --- config/application.yml.example | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/application.yml.example b/config/application.yml.example index b9c2cbae692..ac959f5d3cd 100644 --- a/config/application.yml.example +++ b/config/application.yml.example @@ -192,7 +192,7 @@ development: usps_upload_sftp_username: 'brady' usps_upload_sftp_password: 'test' usps_upload_token: '123ABC' - webauthn_enabled: true + webauthn_enabled: 'true' # These values serve as defaults for all production-like environments, which # includes *.identitysandbox.gov and *.login.gov. @@ -304,7 +304,7 @@ production: usps_upload_sftp_username: usps_upload_sftp_password: usps_upload_token: - webauthn_enabled: false + webauthn_enabled: 'false' test: aamva_cert_enabled: 'true' @@ -420,4 +420,4 @@ test: usps_upload_sftp_username: 'user' usps_upload_sftp_password: 'pass' usps_upload_token: 'test_token' - webauthn_enabled: true + webauthn_enabled: 'true'