From 14a78f4e1e263c767a609d53e262c21fbeea21f9 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sat, 5 Dec 2020 09:26:22 -0300 Subject: Remove unnecessary curly braces from Bash variables --- terraform-apply.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'terraform-apply.sh') diff --git a/terraform-apply.sh b/terraform-apply.sh index d09fb3c..9a9d577 100755 --- a/terraform-apply.sh +++ b/terraform-apply.sh @@ -8,7 +8,7 @@ export TF_VAR_vultr_api_key rm -rf .terraform/ terraform init PLAN_FILE="./secrets/terraform/plan-files/$(date -Iseconds).tfplan" -terraform plan -out="${PLAN_FILE}" +terraform plan -out="$PLAN_FILE" # shellcheck disable=2162 read -p "Is the above Terraform plan acceptable? Press CTRL+c to cancel." -terraform apply "${PLAN_FILE}" +terraform apply "$PLAN_FILE" -- cgit v1.2.3