Skip to content

Commit 615c086

Browse files
authored
Update Entra ID comments
1 parent c18b46d commit 615c086

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-app-configuration/quickstart-python-provider.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ In this section, you will create a console application and load data from your A
7070

7171
endpoint = os.environ.get("AZURE_APPCONFIG_ENDPOINT")
7272

73-
# Connect to Azure App Configuration using a connection string.
73+
# Connect to Azure App Configuration using Microsoft Entra ID.
7474
config = load(endpoint=endpoint, credential=credential)
7575
credential = DefaultAzureCredential()
7676

@@ -79,7 +79,7 @@ In this section, you will create a console application and load data from your A
7979
# Find the key "my_json" and print the value for "key" from the dictionary.
8080
print(config["my_json"]["key"])
8181

82-
# Connect to Azure App Configuration using a connection string and trimmed key prefixes.
82+
# Connect to Azure App Configuration using Entra ID and trimmed key prefixes.
8383
trimmed = {"test."}
8484
config = load(endpoint=endpoint, credential=credential, trim_prefixes=trimmed)
8585
# From the keys with trimmed prefixes, find a key with "message" and print its value.

0 commit comments

Comments
 (0)