vim_account_id = db_cluster["vim_account"]
providerconfig_name = f"{vim_account_id}-config"
vim_type = db_vim_account["vim_type"]
+ if db_cluster.get("bootstrap", True):
+ skip_bootstrap = "false"
+ else:
+ skip_bootstrap = "true"
if vim_type == "azure":
cluster_type = "aks"
elif vim_type == "aws":
cluster_location=db_cluster["region_name"],
osm_project_name=osm_project_name,
rg_name=db_cluster["resource_group"],
+ skip_bootstrap=skip_bootstrap,
workflow_debug=self._workflow_debug,
workflow_dry_run=self._workflow_dry_run,
)