Hello,
Do you know if it's possible to use environment variable in a Power App Dataflow ? If yes, how can I achieve this ?
My main purpose, it's to automatically gather data from the right source depending on the environment.
Example : I have two environments, one DEV and one PROD, when I deploy DEV to PROD, I want that the source in my dataflow change accordingly.
For DEV, in my dataflow, source is :
CommonDataService.Database("orgxxxxxx33.crm4.dynamics.com")
For PROD, in my dataflow, source is :
CommonDataService.Database("orgxxxxxxa3.crm4.dynamics.com")
I want to replace the static value by an environment variable or any kind of stuff that can change dynamically the source depending on the environment.
Thanks for your help,