diff --git a/tf-infra/contabo/state.sh b/tf-infra/contabo/state.sh deleted file mode 100755 index 1dff13a..0000000 --- a/tf-infra/contabo/state.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env bash - -BUCKET="nilstrieb-states" - -case "$1" in - download) - aws s3api get-object --bucket "$BUCKET" --key "contabo-terraform.tfstate" "terraform.tfstate" - ;; - upload) - aws s3api put-object --bucket "$BUCKET" --key "contabo-terraform.tfstate" --body "terraform.tfstate" - ;; - *) - echo "subcommand download or upload required" - exit 1 -esac