How can I declare an associative array with something like
declare -A ENV_JOBS=( [""]="" ["staging"]="staging-job-name ["dev"]="dev-job-name" )
So whenever it gets an empty string it'll return empty value?
Currently the error message bad array subscript shows up when I declare and access with ${ENV_JOBS[""]}
My usage is to do something like "job-name${ENV_JOBS[$ENV]}" to be able to compute all env job names.