Hey Everyone.. Should I be able to use multiple va...
# box-products
c
Hey Everyone.. Should I be able to use multiple variables in server.json value?
Copy code
"fusionreactor": {
	"enable": "${FUSIONREACTOR_ENABLE:true}",
	"EDSGroups": "${APP_NAME:myapp}-${APP_STAGE:development}"
}
All of these environment variables are present, but the EDSGroups value is being reported in FR as "myapp-production"
b
@chapmandu Yes, that should work just fine
I'm unclear on what you expect the value to be
Run
env show
to see what env vars are defined in this project
c
Thanks for confirming Brad.. I'm expecting to see killerapp-production..
b
Did you try by debugging step above?
It would seem the
APP_NAME
env var is not defined, but you haven't provided any information to help troubleshoot that
c
All good thanks Brad.. yes it certainly appears that APP_NAME is not defined. I just needed to confirm that multiple variables can be used. I think this may be a Docker container issue..
I will certainly use
env show
to debug.. thanks again