We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
TF_VAR_<lowercase>
--env-vars=
1 parent a8ed894 commit 870b106Copy full SHA for 870b106
hooks/_common.sh
@@ -128,7 +128,7 @@ function common::parse_and_export_env_vars {
128
while true; do
129
# Check if at least 1 env var exists in `$arg`
130
# shellcheck disable=SC2016 # '${' should not be expanded
131
- if [[ "$arg" =~ '${'[A-Z_][A-Z0-9_]*'}' ]]; then
+ if [[ "$arg" =~ '${'[A-Z_][A-Za-z0-9_]*'}' ]]; then
132
# Get `ENV_VAR` from `.*${ENV_VAR}.*`
133
local env_var_name=${arg#*$\{}
134
env_var_name=${env_var_name%%\}*}
0 commit comments