Github user alopresto commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2921#discussion_r206252629
--- Diff: nifi-docker/dockermaven/sh/secure.sh ---
@@ -45,13 +45,23 @@ prop_replace 'nifi.security.truststore'
"${TRUSTSTORE_PATH}"
prop_replace 'nifi.security.truststoreType' "${TRUSTSTORE_TYPE}"
prop_replace 'nifi.security.truststorePasswd' "${TRUSTSTORE_PASSWORD}"
+prop_replace 'keystore' "${KEYSTORE_PATH}"
${nifi_toolkit_props_file}
+prop_replace 'keystoreType' "${KEYSTORE_TYPE}"
${nifi_toolkit_props_file}
+prop_replace 'keystorePasswd' "${KEYSTORE_PASSWORD}"
${nifi_toolkit_props_file}
--- End diff --
Same comment about `keyPasswd`.
---