Skip to content

Commit 220f787

Browse files
committed
fix
1 parent 28f6aa8 commit 220f787

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

articles/azure-app-configuration/howto-targetingfilter-go.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,9 +217,9 @@ In this section, you create a web application that allows users to sign in and u
217217
</html>
218218
```
219219

220-
## Use targeting with feature flags
220+
## Connect to App Configuration
221221

222-
1. Create a file named `appconfig.go` with the following content. You can connect to your App Configuration store using Microsoft Entra ID (recommended) or a connection string.
222+
Create a file named `appconfig.go` with the following content. You can connect to your App Configuration store using Microsoft Entra ID (recommended) or a connection string.
223223

224224
### [Microsoft Entra ID (recommended)](#tab/entra-id)
225225

@@ -272,7 +272,7 @@ func loadAzureAppConfiguration(ctx context.Context) (*azureappconfiguration.Azur
272272

273273
return appConfig, nil
274274
}
275-
```
275+
```
276276

277277
### [Connection string](#tab/connection-string)
278278

@@ -319,6 +319,10 @@ func loadAzureAppConfiguration(ctx context.Context) (*azureappconfiguration.Azur
319319
}
320320
```
321321

322+
---
323+
324+
## Use targeting with feature flags
325+
322326
1. Create a file named `main.go` with the following content.
323327

324328
```golang

0 commit comments

Comments
 (0)