I'm using docker as a first time user on a new home server. I've used Node-red, but it's been at least 5 years since I last messed with it. I've got Node-red running successfully as a container and am in the process of setting up several flows.
The issue I'm having is pulling an environment variable into Nodered. I've been on a lot of websites and message boards, but all fall just short of giving me what I need. I set my webhooks key as a docker environment in the Node-red container, and this is verified. If my key is IFTTTKey="xxx3235a", how do I pull that into a flow without having to enter it directly into Node-red?
A basic http request might be POST Webhooks Integrations - Connect Your Apps with IFTTT. The only information I find on all the various forums, websites, message boards, etc., is to either use ${IFTTTKey} or {{IFTTTKey}}, but neither one works. If I put the key directly into Node-red, it works fine, but I would prefer to keep it as a separate environment variable. Since severalf friends and I share docker configuration set-ups and Node-red flows, I'd really rather not have my key entered into Node-red and just pull it as I need from the environmental file.