I am trying to get the application settings values from azure function for python.
I used the below code to get the Data_AzureConnection value.
logging.info("OS Env")
logging.info("Env value")
test = os.environ["Data_AzureConnection"]
logging.info(test)
But I got below result
Why I am not able to see the Data_AzureConnection value?
Is there any way to get the values from azure function for python application settings? Please let me know if there is a solution.