summaryrefslogtreecommitdiffstats
path: root/lcm/lcm/pub/config/config.py
diff options
context:
space:
mode:
authorying.yunlong <ying.yunlong@zte.com.cn>2017-08-16 09:07:58 +0800
committerying.yunlong <ying.yunlong@zte.com.cn>2017-08-16 15:03:59 +0800
commitebfb00fb5e70cdc919b910d91650446542088cea (patch)
treec5095e666d73c0666dd063ef5dcd63d070c9e592 /lcm/lcm/pub/config/config.py
parent098b7e99394fcbaaff005239a2143836c02b03e0 (diff)
Add aaiapi file in gvnfm vnflcm
Create aaiapi directory and new aai.py file to implement call aai in the future. Change-Id: I7236c299b2539c807f0e1092a4fbb0d8ebfd70bb Issue-ID: VFC-98 Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
Diffstat (limited to 'lcm/lcm/pub/config/config.py')
-rw-r--r--lcm/lcm/pub/config/config.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/lcm/lcm/pub/config/config.py b/lcm/lcm/pub/config/config.py
index b965ae89..142a4a60 100644
--- a/lcm/lcm/pub/config/config.py
+++ b/lcm/lcm/pub/config/config.py
@@ -17,6 +17,11 @@ import os
MSB_SERVICE_IP = '127.0.0.1'
MSB_SERVICE_PORT = '80'
+# [AAI]
+AAI_SERVICE_IP = '127.0.0.1'
+AAI_SERVICE_PORT = '8443'
+AAI_BASE_URL = "https://%s:%s/" % (AAI_SERVICE_IP, AAI_SERVICE_PORT)
+
# [REDIS]
REDIS_HOST = '127.0.0.1'
REDIS_PORT = '6379'