X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=lcm%2Flcm%2Fpub%2Fconfig%2Fconfig.py;h=b153aee8019d0254f89f8ee963beb91255578f34;hb=332d5d1e96b43d7dcf107a33e0f6d74ec08f1c3f;hp=650d6755c8949a0cc660b536c7c17849295a0473;hpb=9c76915d86fbedb50386708542c592d09bec4f39;p=vfc%2Fgvnfm%2Fvnflcm.git diff --git a/lcm/lcm/pub/config/config.py b/lcm/lcm/pub/config/config.py index 650d6755..b153aee8 100644 --- a/lcm/lcm/pub/config/config.py +++ b/lcm/lcm/pub/config/config.py @@ -12,21 +12,11 @@ # See the License for the specific language governing permissions and # limitations under the License. -import os - # [MSB] +MSB_SERVICE_PROTOCOL = 'https' 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/v8" % (AAI_SERVICE_IP, AAI_SERVICE_PORT) -AAI_USER = "AAI" -AAI_PASSWORD = "AAI" -CLOUD_OWNER = "11" -CLOUD_REGION_ID = "" -TENANT_ID = "" +MSB_SERVICE_PORT = '443' +MSB_BASE_URL = "%s://%s:%s" % (MSB_SERVICE_PROTOCOL, MSB_SERVICE_IP, MSB_SERVICE_PORT) # [REDIS] REDIS_HOST = '127.0.0.1' @@ -40,6 +30,16 @@ DB_NAME = "gvnfm" DB_USER = "gvnfm" DB_PASSWD = "gvnfm" +# [MDC] +SERVICE_NAME = "vnflcm" +FORWARDED_FOR_FIELDS = ["HTTP_X_FORWARDED_FOR", "HTTP_X_FORWARDED_HOST", + "HTTP_X_FORWARDED_SERVER"] + +# [aai config] +AAI_BASE_URL = "http://127.0.0.1:80/aai/v13" +AAI_USER = "AAI" +AAI_PASSWD = "AAI" + # [register] REG_TO_MSB_WHEN_START = True REG_TO_MSB_REG_URL = "/api/microservices/v1/services" @@ -55,3 +55,4 @@ REG_TO_MSB_REG_PARAM = { "ttl": 0 }] } +MSB_SVC_URL = "/api/microservices/v1/services/vnflcm/version/v1"