Modify vnflcm code according to PEP8 standard
[vfc/gvnfm/vnflcm.git] / lcm / lcm / pub / config / config.py
index b625255..f18ef8e 100644 (file)
 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 # See the License for the specific language governing permissions and
 # limitations under the License.
-import os
 
 # [MSB]
 MSB_SERVICE_IP = '127.0.0.1'
 MSB_SERVICE_PORT = '80'
 
+# [AAI]
+AAI_BASE_URL = "https://127.0.0.1:8443/aai/v11"
+AAI_USER = "AAI"
+AAI_PASSWORD = "AAI"
+REPORT_TO_AAI = True
+
 # [REDIS]
 REDIS_HOST = '127.0.0.1'
 REDIS_PORT = '6379'
@@ -31,16 +36,16 @@ DB_PASSWD = "gvnfm"
 
 # [register]
 REG_TO_MSB_WHEN_START = True
-REG_TO_MSB_REG_URL = "/openoapi/microservices/v1/services"
+REG_TO_MSB_REG_URL = "/api/microservices/v1/services"
 REG_TO_MSB_REG_PARAM = {
     "serviceName": "vnflcm",
     "version": "v1",
-    "url": "/openoapi/vnflcm/v1",
+    "url": "/api/vnflcm/v1",
     "protocol": "REST",
     "visualRange": "1",
     "nodes": [{
         "ip": "127.0.0.1",
-        "port": "8703",
+        "port": "8801",
         "ttl": 0
     }]
 }