1#!/bin/bash 2 3set -euo pipefail 4 5SCRIPT_PATH=$(realpath "$(dirname "$0")") 6 7# shellcheck source=../lib/common.sh 8source "$(realpath "${SCRIPT_PATH}/../lib/common.sh")" 9 10# terraform function 11import "terraform.sh" 12 13terraform_apply 14 15