mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
14 lines
227 B
Bash
Executable File
14 lines
227 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_PATH=$(realpath "$(dirname "$0")")
|
|
|
|
# shellcheck source=../lib/common.sh
|
|
source "$(realpath "${SCRIPT_PATH}/../lib/common.sh")"
|
|
|
|
# terraform function
|
|
import "terraform.sh"
|
|
|
|
terraform_plan
|