diff --git a/ibm_catalog.json b/ibm_catalog.json index 2ce66a4..e0b91b1 100644 --- a/ibm_catalog.json +++ b/ibm_catalog.json @@ -1524,9 +1524,9 @@ { "key": "scc_enable_scc", "type": "string", - "default_value": "false", + "default_value": "true", "description": "Adds the SCC tool integration to the toolchain.", - "required": true + "required": false }, { "key": "scc_instance_crn", @@ -3299,9 +3299,9 @@ { "key": "scc_enable_scc", "type": "string", - "default_value": "false", + "default_value": "true", "description": "Adds the SCC tool integration to the toolchain.", - "required": true + "required": false }, { "key": "scc_instance_crn", diff --git a/main.tf b/main.tf index 44e94f5..215d827 100644 --- a/main.tf +++ b/main.tf @@ -919,7 +919,7 @@ resource "null_resource" "ci_pipeline_run" { } provisioner "local-exec" { - command = "${path.root}/scripts/ci_start.sh \"${ibm_cd_tekton_pipeline_trigger.ci_pipeline_webhook[0].webhook_url}\" \"${random_string.webhook_secret.result}\"" + command = "${path.root}/../../scripts/ci_start.sh \"${ibm_cd_tekton_pipeline_trigger.ci_pipeline_webhook[0].webhook_url}\" \"${random_string.webhook_secret.result}\"" interpreter = ["/bin/bash", "-c"] quiet = true }