summaryrefslogtreecommitdiffstats
path: root/vio/vio/pub/config/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'vio/vio/pub/config/config.py')
-rw-r--r--vio/vio/pub/config/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/vio/vio/pub/config/config.py b/vio/vio/pub/config/config.py
index b6b8caa..c461b24 100644
--- a/vio/vio/pub/config/config.py
+++ b/vio/vio/pub/config/config.py
@@ -21,8 +21,8 @@ ROOT_PATH = os.path.dirname(os.path.dirname(
os.path.dirname(os.path.abspath(__file__))))
# [A&AI]
-AAI_ADDR = "aai.api.simpledemo.openecomp.org"
-AAI_PORT = "8443"
+AAI_ADDR = os.getenv("AAI_ADDR", "aai.api.simpledemo.openecomp.org")
+AAI_PORT = os.getenv("AAI_PORT", "8443")
AAI_SERVICE_URL = 'https://%s:%s/aai' % (AAI_ADDR, AAI_PORT)
AAI_SCHEMA_VERSION = "v13"
AAI_USERNAME = 'AAI'