diff options
author | sebdet <sebastien.determe@intl.att.com> | 2019-04-26 16:34:14 +0200 |
---|---|---|
committer | sebdet <sebastien.determe@intl.att.com> | 2019-04-26 16:34:14 +0200 |
commit | af8b7d7fa16f9c15abde936a21e4d95cfd3efc59 (patch) | |
tree | 950a2ab0d33ecca6155e22679a1c0bb2f8ea4cfc /src/main/resources/application.properties | |
parent | 893b3ad8f4b985c35e9f24346eca515e6bc251e8 (diff) |
Fix policy Hosts
Add support for PAP(for PDP group) and API host/creds (for policy
create/delete)
Issue-ID: CLAMP-359
Change-Id: I304193c4f1e77bd6676b32ca3d611da57106e655
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Diffstat (limited to 'src/main/resources/application.properties')
-rw-r--r-- | src/main/resources/application.properties | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 123443175..beb0665bd 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -152,9 +152,13 @@ clamp.config.dcae.deployment.template=classpath:/clds/templates/dcae-deployment- # # # Configuration Settings for Policy Engine Components -clamp.config.policy.url=http4://policy.api.simpledemo.onap.org:8081 -clamp.config.policy.userName=test -clamp.config.policy.password=test +clamp.config.policy.api.url=http4://policy.api.simpledemo.onap.org:6969 +clamp.config.policy.api.userName=healthcheck +clamp.config.policy.api.password=zb!XztG34 +clamp.config.policy.pap.url=http4://policy.api.simpledemo.onap.org:6969 +clamp.config.policy.pap.userName=healthcheck +clamp.config.policy.pap.password=zb!XztG34 + clamp.config.policy.pdpUrl1=http://policy.api.simpledemo.onap.org:8081/pdp/ , testpdp, alpha123 clamp.config.policy.pdpUrl2=http://policy.api.simpledemo.onap.org:8081/pdp/ , testpdp, alpha123 clamp.config.policy.papUrl=http://policy.api.simpledemo.onap.org:8081/pap/ , testpap, alpha123 |