Github user bbende commented on a diff in the pull request:
https://github.com/apache/nifi-registry/pull/29#discussion_r149151449
--- Diff:
nifi-registry-properties/src/main/java/org/apache/nifi/registry/properties/NiFiRegistryProperties.java
---
@@ -49,6 +49,8 @@
public static final String SECURITY_NEED_CLIENT_AUTH =
"nifi.registry.security.needClientAuth";
public static final String SECURITY_AUTHORIZERS_CONFIGURATION_FILE =
"nifi.registry.security.authorizers.configuration.file";
public static final String SECURITY_AUTHORIZER =
"nifi.registry.security.authorizer";
+ public static final String
SECURITY_IDENTITY_PROVIDER_CONFIGURATION_FILE =
"nifi.registry.security.identity.provider.configuration.file";
--- End diff --
We should add these to the default nifi-registry.properties file in
nifi-registry-resources, and we need to add the identity-providers.xml in there
so that the assembly has them
---