2
0
mirror of https://github.com/VinylDNS/vinyldns synced 2025-08-22 02:02:14 +00:00
vinyldns/test/api/integration/.env.integration
Ryan Emerle d9f986997d
Minor updates
- Remove executable permissions from *.scala files
- Update `prepare-portal.sh` to avoid creating `package-lock.json` as it
can cause more problems than it prevents
2022-05-18 09:05:24 -04:00

30 lines
1.2 KiB
Plaintext

# Overrides that can be used when dependent services are running in the vinyldns-integration host
# and 'sbt' or tests are running in another container. More importantly, when these services are
# not accessible via "localhost"
#
# Any docker container that wishes to to use these, can simply specify this file using the `--env-file`
# argument.
# General settings
VINYLDNS_API_URL=http://vinyldns-integration:9000
VINYLDNS_PORTAL_URL=http://vinyldns-integration:9001
# Portal settings
VINYLDNS_BACKEND_URL=http://vinyldns-integration:9000
LDAP_PROVIDER_URL=ldap://vinyldns-integration:19004
# API Settings
SQS_SERVICE_ENDPOINT=http://vinyldns-integration:19003
SNS_SERVICE_ENDPOINT=http://vinyldns-integration:19003
R53_SERVICE_ENDPOINT=http://vinyldns-integration:19003
MYSQL_ENDPOINT=vinyldns-integration:19002
DEFAULT_DNS_ADDRESS=vinyldns-integration:19001
USE_RECORDSET_CACHE=true
LOAD_TEST_DATA=true
JDBC_DRIVER=org.mariadb.jdbc.Driver
JDBC_USER=root
JDBC_PASSWORD=pass
JDBC_URL=jdbc:mariadb://vinyldns-integration:19002/vinyldns?user=${JDBC_USER}&password=${JDBC_PASSWORD}
JDBC_MIGRATION_URL=jdbc:mariadb://vinyldns-integration:19002/?user=${JDBC_USER}&password=${JDBC_PASSWORD}