aboutsummaryrefslogtreecommitdiffstats
path: root/controlloop/common/feature-controlloop-management/src/main/feature/config/SDNC-http-client.properties
diff options
context:
space:
mode:
authorJim Hahn <jrh3@att.com>2020-03-24 10:41:21 -0400
committerJim Hahn <jrh3@att.com>2020-03-24 11:07:42 -0400
commitb9e27b5ddde21cf4feb378f975137f4d5ea87854 (patch)
tree61c9d06990827e404c9a8825943175f01898b8a0 /controlloop/common/feature-controlloop-management/src/main/feature/config/SDNC-http-client.properties
parentf71a4fee815f909d49f547ed0b34055d810eaaec (diff)
Configure http client URIs via env properties
The context URI path for the various actors needs to be configurable via properties specified in the OOM charts. Issue-ID: POLICY-2441 Signed-off-by: Jim Hahn <jrh3@att.com> Change-Id: I7348d0c4f47a33dbc806ad117f35b96c887b5394
Diffstat (limited to 'controlloop/common/feature-controlloop-management/src/main/feature/config/SDNC-http-client.properties')
-rw-r--r--controlloop/common/feature-controlloop-management/src/main/feature/config/SDNC-http-client.properties10
1 files changed, 5 insertions, 5 deletions
diff --git a/controlloop/common/feature-controlloop-management/src/main/feature/config/SDNC-http-client.properties b/controlloop/common/feature-controlloop-management/src/main/feature/config/SDNC-http-client.properties
index ad11c3fa5..255a32103 100644
--- a/controlloop/common/feature-controlloop-management/src/main/feature/config/SDNC-http-client.properties
+++ b/controlloop/common/feature-controlloop-management/src/main/feature/config/SDNC-http-client.properties
@@ -20,8 +20,8 @@ http.client.services=SDNC
http.client.services.SDNC.managed=true
http.client.services.SDNC.https=true
-http.client.services.SDNC.host=${env:SDNC_HOST}
-http.client.services.SDNC.port=${env:SDNC_PORT}
-http.client.services.SDNC.username=${env:SDNC_USERNAME}
-http.client.services.SDNC.password=${env:SDNC_PASSWORD}
-http.client.services.SDNC.contextUriPath=
+http.client.services.SDNC.host=${envd:SDNC_HOST}
+http.client.services.SDNC.port=${envd:SDNC_PORT}
+http.client.services.SDNC.username=${envd:SDNC_USERNAME}
+http.client.services.SDNC.password=${envd:SDNC_PASSWORD}
+http.client.services.SDNC.contextUriPath=${envd:SDNC_CONTEXT_URI}