mirror of
https://github.com/optim-enterprises-bv/turnk8s.git
synced 2025-11-05 20:57:46 +00:00
15 lines
452 B
Bash
15 lines
452 B
Bash
#!/bin/bash
|
|
|
|
|
|
clusters=( "$@" )
|
|
|
|
for cluster in "${clusters[@]}"
|
|
do
|
|
export TF_VAR_cluster_name="$cluster"
|
|
cluster_without_prefix="${cluster#turnk8s-}"
|
|
terraform workspace select "$cluster_without_prefix-infrastructure"
|
|
terraform destroy -auto-approve
|
|
terraform workspace select "default-ws"
|
|
terraform workspace delete -force "$cluster_without_prefix-infrastructure"
|
|
terraform workspace delete -force "$cluster_without_prefix-cluster"
|
|
done |