aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/resources/scripts/sdcBePy/tosca/imports/runGenericNormative.py
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-be/src/main/resources/scripts/sdcBePy/tosca/imports/runGenericNormative.py')
-rw-r--r--catalog-be/src/main/resources/scripts/sdcBePy/tosca/imports/runGenericNormative.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/catalog-be/src/main/resources/scripts/sdcBePy/tosca/imports/runGenericNormative.py b/catalog-be/src/main/resources/scripts/sdcBePy/tosca/imports/runGenericNormative.py
index 424c0ca7c5..1353486bc2 100644
--- a/catalog-be/src/main/resources/scripts/sdcBePy/tosca/imports/runGenericNormative.py
+++ b/catalog-be/src/main/resources/scripts/sdcBePy/tosca/imports/runGenericNormative.py
@@ -20,12 +20,12 @@ def get_normative_prams():
def main():
- scheme, be_host, be_port, admin_user, _, debug = get_args()
+ scheme, be_host, be_port, admin_user, _, debug, tls_cert, tls_key, tls_key_pw, ca_cert = get_args()
candidate = NormativeTypeCandidate(*get_normative_prams())
try:
process_and_create_normative_types(candidate,
- scheme, be_host, be_port, admin_user,
+ scheme, be_host, be_port, admin_user, tls_cert, tls_key, tls_key_pw, ca_cert,
debug=debug,
exit_on_success=True)
except AttributeError: