mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
chore: address cleanup script linter warnings
chore: address cleanup script linter warnings
This commit is contained in:
commit
a6aa4469ad
1 changed files with 4 additions and 3 deletions
|
@ -42,12 +42,13 @@ cleanup_resource() {
|
||||||
|
|
||||||
if [ -z "$extra_list_arg" ]
|
if [ -z "$extra_list_arg" ]
|
||||||
then
|
then
|
||||||
resources=( $(gcloud "${resource_group}" "${resource}" list --project="${PROJECT_ID}" --format="csv[no-heading](name)") )
|
mapfile -t resources < <(gcloud "${resource_group}" "${resource}" list --project="${PROJECT_ID}" --format="csv[no-heading](name)")
|
||||||
else
|
else
|
||||||
resources=( $(gcloud "${resource_group}" "${resource}" list --project="${PROJECT_ID}" --format="csv[no-heading](name)" "${extra_list_arg}") )
|
mapfile -t resources < <(gcloud "${resource_group}" "${resource}" list --project="${PROJECT_ID}" --format="csv[no-heading](name)" "${extra_list_arg}")
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for resource_id in $resources; do
|
for resource_id in "${resources[@]}"
|
||||||
|
do
|
||||||
if [ -z "$extra_delete_arg" ]
|
if [ -z "$extra_delete_arg" ]
|
||||||
then
|
then
|
||||||
gcloud "${resource_group}" "${resource}" delete "${resource_id}" --project="${PROJECT_ID}" -q
|
gcloud "${resource_group}" "${resource}" delete "${resource_id}" --project="${PROJECT_ID}" -q
|
||||||
|
|
Loading…
Add table
Reference in a new issue