Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/dev/preview/workflow/terraform/terraform-apply.sh
2500 views
1
#!/bin/bash
2
3
set -euo pipefail
4
5
SCRIPT_PATH=$(realpath "$(dirname "$0")")
6
7
# shellcheck source=../lib/common.sh
8
source "$(realpath "${SCRIPT_PATH}/../lib/common.sh")"
9
10
# terraform function
11
import "terraform.sh"
12
13
terraform_apply
14
15