- Added bootstrap destroy module structure for aws, ali, azure, gcp, and vultr. - Moved AWS force destroy script to `terraform-hcl-standard/aws-cloud/modules/bootstrap-destroy/destroy.sh`. - Updated `iac-pipeline-mutli-cloud-bootstrap..yaml` to dynamically invoke the destroy script based on the cloud provider. - Added placeholders for other cloud providers.
7 lines
163 B
Bash
Executable File
7 lines
163 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# This script is a placeholder for Alibaba Cloud bootstrap resource cleanup
|
|
echo "Not implemented yet for Ali Cloud"
|
|
exit 0
|