blob: 25b749d98f356a916ebc10aacf75f017a60833bd [file] [log] [blame]
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Properties for Spring Boot integration tests
# Documentation for common Spring Boot application properties can be found at:
# https://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html
# Custom (non-standard to Spring Boot) properties
nifi.registry.properties.file: src/test/resources/conf/secure-ldap/nifi-registry.properties
nifi.registry.client.properties.file: src/test/resources/conf/secure-ldap/nifi-registry-client.properties
# Embedded Server SSL Context Config
#server.ssl.client-auth: need # LDAP-configured server does not require two-way TLS
server.ssl.key-store: ./target/test-classes/keys/registry-ks.jks
server.ssl.key-store-password: password
server.ssl.key-password: password
server.ssl.protocol: TLS
server.ssl.trust-store: ./target/test-classes/keys/ca-ts.jks
server.ssl.trust-store-password: password
# Embedded LDAP Config
spring.ldap.embedded.base-dn: dc=example,dc=com
spring.ldap.embedded.credential.username: cn=read-only-admin,dc=example,dc=com
spring.ldap.embedded.credential.password: password
spring.ldap.embedded.ldif: classpath:conf/secure-ldap/test-ldap-data.ldif
spring.ldap.embedded.port: 8389
spring.ldap.embedded.validation.enabled: false
# Additional Logging Config
logging.level.org.springframework.security.ldap: DEBUG
logging.level.org.springframework.ldap: DEBUG