mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-05 10:20:26 -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" ]
|
||||
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
|
||||
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
|
||||
|
||||
for resource_id in $resources; do
|
||||
for resource_id in "${resources[@]}"
|
||||
do
|
||||
if [ -z "$extra_delete_arg" ]
|
||||
then
|
||||
gcloud "${resource_group}" "${resource}" delete "${resource_id}" --project="${PROJECT_ID}" -q
|
||||
|
|
Loading…
Add table
Reference in a new issue