-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathclean-up.sh
executable file
·38 lines (36 loc) · 1.92 KB
/
clean-up.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
####################################################################################
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
####################################################################################
####################################################################################
# README
#
# This script will delete all the Terraform lock and state files in the 01 and 02 directories
# This will basically reset Terraform and you will need to run a "terraform init" again in each directory
# This is useful for testing. Typically you will run the 01-deploy.sh script or run the terraform
# commands directly in the 01 or 02 directories. Then you might want to create a new GCP project. You
# will update the terraform.tfvars-TEMPLATE.json file (project name, storage account) and then start fresh.
# It it typically easier to just delete the whole GCP project via the GCP portal or command line.
# (e.g. gcloud projects delete PROJECT_ID_OR_NUMBER)
#
# Author: Adam Paternostro
# Terraform for Google: https://registry.terraform.io/providers/hashicorp/google/latest/docs
####################################################################################
rm -r ./terraform/.terraform
rm ./terraform/.terraform.lock.hcl
rm ./terraform/terraform.tfstate
rm ./terraform/terraform.tfstate.backup
rm ./terraform/tf-output.json
rm -r ./terraform-modules/colab-deployment/cloud-function/notebooks
rm -r ./tmp