-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdestroy.sh
executable file
·52 lines (43 loc) · 1.32 KB
/
destroy.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/bash
#
# *******************************************************************************
# * Copyright (c) 2019 Edgeworx, Inc.
# *
# * This program and the accompanying materials are made available under the
# * terms of the Eclipse Public License v. 2.0 which is available at
# * http://www.eclipse.org/legal/epl-2.0
# *
# * SPDX-License-Identifier: EPL-2.0
# *******************************************************************************
#
set -o errexit -o pipefail -o noclobber -o nounset
cd "$(dirname "$0")"
. ./scripts/utils.sh
usage() {
echo
echoInfo "Usage: `basename $0` variables_file.tfvars"
echoInfo " `basename $0` [-h, --help]"
echoInfo "$0 will destroy minimal infrastructure: VPC, GKE, Packet nodes"
}
realpath() {
[[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"
}
if [[ "${1-}" == "--help" ]] || [[ "${1-}" == "-h" ]]; then
usage
exit 0
fi
if [[ ! -r "${1-}" ]]; then
echoError "Variables file \"${1-}\" does not exist!"
usage
exit 1
fi
TFVARS=$(realpath "${1-}")
prettyHeader "Destroying infrastructure"
echoInfo "Using ${TFVARS} as variable file"
cd "infrastructure/gcp"
if ! terraform destroy -var-file="${TFVARS}" -auto-approve ; then
echoError "Terraform destroy failed."
exit 1
fi
rm -f ecn.yaml
echoSuccess "Infrastructure successfully destroyed!"