removing remote user

This commit is contained in:
hnaumann
2024-09-11 14:23:17 +02:00
parent fe497c0abb
commit d8fc001156
13 changed files with 907 additions and 1 deletions

View File

@@ -0,0 +1,36 @@
#!/bin/sh
set -e
on_exit () {
[ $? -eq 0 ] && exit
echo 'ERROR: Feature "Terraform, tflint, and TFGrunt" (ghcr.io/devcontainers/features/terraform) failed to install! Look at the documentation at ${documentation} for help troubleshooting this error.'
}
trap on_exit EXIT
set -a
. ../devcontainer-features.builtin.env
. ./devcontainer-features.env
set +a
echo ===========================================================================
echo 'Feature : Terraform, tflint, and TFGrunt'
echo 'Description : Installs the Terraform CLI and optionally TFLint and Terragrunt. Auto-detects latest version and installs needed dependencies.'
echo 'Id : ghcr.io/devcontainers/features/terraform'
echo 'Version : 1.3.8'
echo 'Documentation : https://github.com/devcontainers/features/tree/main/src/terraform'
echo 'Options :'
echo ' HTTPPROXY=""
INSTALLSENTINEL="false"
INSTALLTERRAFORMDOCS="false"
INSTALLTFSEC="false"
TERRAGRUNT="latest"
TFLINT="latest"
VERSION="latest"'
echo 'Environment :'
printenv
echo ===========================================================================
chmod +x ./install.sh
./install.sh