mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-07-28 17:21:11 +00:00
8 lines
113 B
Bash
Executable File
8 lines
113 B
Bash
Executable File
#!/bin/sh
|
|
for T in tag-*; do
|
|
(
|
|
cd $T
|
|
terraform apply -destroy -auto-approve && mv ../$T ../deleted$T
|
|
)
|
|
done
|