#!/usr/bin/env bash

set -eo pipefail

cd $(dirname "$0")

usage() {
    cat <<EOF
setup_alerts.sh [-h/--help]

Since we're global, we have no workspaces and we'll just roll with the default workspace.
EOF
    exit 1
}

# Side note: Don't set -u in this file
if [  "$1" = "-h" ] || [ "$1" = "--help" ]; then usage; fi

terraform apply
