diff options
author | 2018-03-28 17:12:51 +0200 | |
---|---|---|
committer | 2018-04-03 23:36:25 +0200 | |
commit | 9ac6c3cc7e3f4aec9ba69e7a5bb0800471c4e8dc (patch) | |
tree | 55122c3e6f668250d19d917e668066cf8647f125 /src/main/resources/application-localhost.properties | |
parent | 99bf586a6eb9799c4f33e43976d741f2807ea287 (diff) |
Add service inventory
- Add service inventory operations get and find
- Consumes AAI
- Add tests
Change-Id: If04ada259b7a172c1dbaac3649047cdb2d9dd5bc
Issue-ID: EXTAPI-39
Signed-off-by: MatthieuGeerebaert <matthieu.geerebaert@orange.com>
Diffstat (limited to 'src/main/resources/application-localhost.properties')
-rw-r--r-- | src/main/resources/application-localhost.properties | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main/resources/application-localhost.properties b/src/main/resources/application-localhost.properties index 58b13f6..e753488 100644 --- a/src/main/resources/application-localhost.properties +++ b/src/main/resources/application-localhost.properties @@ -1,7 +1,23 @@ # LOGGING logging.level.org.onap.nbi=DEBUG +# ONAP +onap.lcpCloudRegionId=RegionOne +onap.tenantId=31047205ce114b60833b23e400d6a535 +onap.cloudOwner=CloudOwner + +# NBI +nbi.url=http://127.0.0.1:8080/nbi/api/v1 + # SDC sdc.host=http://127.0.0.1:8090 sdc.header.ecompInstanceId=Rene sdc.header.authorization=Basic YWFpOktwOGJKNFNYc3pNMFdYbGhhazNlSGxjc2UyZ0F3ODR2YW9HR21KdlV5MlU= + +# AAI +aai.host=http://127.0.0.1:8090 +aai.header.authorization=Basic QUFJOkFBSQ== +aai.api.id=AAI + + + |