Using App Configuration in an Azure Databricks notebook
In this recipe, you will learn how to use the secrets stored as configuration values in the App Configuration service in an Azure Databricks notebook.
Getting ready
You can follow along by running the steps in the 5_2.Using App Config in Notebooks
notebook at https://github.com/PacktPublishing/Azure-Databricks-Cookbook/tree/main/Chapter05/.
You can find the Parquet files that will be used in this recipe at https://github.com/PacktPublishing/Azure-Databricks-Cookbook/tree/main/Common/Customer/parquetFiles.
To execute the code mentioned in the notebook, we need to get the connection string of the App Configuration service we have created. The following screenshot shows how to get the connection string for your App Configuration service. The name of the App Configuration service in this example is DevAppconfigurationRes:
In the next...