mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
The backend_service resource was not regional, which is in invalid configuration for a regional proxy to depend on. Fixing up cleanup-script to better handle region/ global resources.
36 lines
No EOL
1.2 KiB
Bash
Executable file
36 lines
No EOL
1.2 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
# cleanup-project cleans up an ansible testing project
|
|
#
|
|
# WARNING: do not run tests against a project while
|
|
# this is running, or else your tests will fail.
|
|
#
|
|
# dependencies:
|
|
# - google-cloud-sdk (gcloudgcloud )
|
|
set -e
|
|
PROJECT_ID="${1}"
|
|
SERVICE_ACCOUNT_NAME="${2}"
|
|
ZONE="us-central1-a"
|
|
|
|
main() {
|
|
# note: the ordering here is deliberate, to start with
|
|
# leaf resources and work upwards to parent resources.
|
|
cleanup_resource "compute instances" "" "--zone=$ZONE"
|
|
cleanup_resource "compute target-http-proxies" "" "--global"
|
|
cleanup_resource "compute forwarding-rules" "" "--global"
|
|
cleanup_resource "compute url-maps" "" "--global"
|
|
cleanup_resource "compute backend-services" "--global" "--global"
|
|
cleanup_resource "compute backend-services" \
|
|
"--regions=us-central1" "--region=us-central1"
|
|
}
|
|
|
|
cleanup_resource() {
|
|
resource_group="$1"
|
|
extra_list_args="$2"
|
|
extra_delete_args="$3"
|
|
|
|
for resource in $(gcloud $resource_group list --project="${PROJECT_ID}" --format="csv[no-heading](name)" $extra_list_args); do
|
|
gcloud $resource_group delete "${resource}" --project="${PROJECT_ID}" -q $extra_delete_args
|
|
done
|
|
}
|
|
|
|
main |