Skip to content

Commit c78ed13

Browse files
committed
Fix indentation
1 parent 9612c39 commit c78ed13

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

articles/service-connector/tutorial-python-aks-sql-database-connection-string.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: maud-lv
77
ms.author: malev
88
ms.service: service-connector
99
ms.topic: tutorial
10-
ms.date: 23/04/2024
10+
ms.date: 07/23/2024
1111
---
1212

1313
# Tutorial: Connect an AKS app to Azure SQL Database (preview)
@@ -85,20 +85,20 @@ Create a service connection between your AKS cluster and your SQL database in th
8585
8686
Create a service connection to the SQL database using the [`az aks connection create sql`](/cli/azure/aks/connection/create#az-aks-connection-create-sql) command. You can run this command in two different ways.
8787
88-
* Generate the new connection step by step.
88+
* Generate the new connection step by step.
89+
90+
```azurecli-interactive
91+
az aks connection create sql
92+
```
93+
94+
* Generate the new connection at once. Make sure you replace the following placeholders with your own information: `<source-subscription>`, `<source_resource_group>`, `<cluster>`, `<target-subscription>`, `<target_resource_group>`, `<server>`, `<database>`, and `<***>`.
8995

90-
```azurecli-interactive
91-
az aks connection create sql
92-
```
93-
94-
* Generate the new connection at once. Make sure you replace the following placeholders with your own information: `<source-subscription>`, `<source_resource_group>`, `<cluster>`, `<target-subscription>`, `<target_resource_group>`, `<server>`, `<database>`, and `<***>`.
95-
96-
```azurecli-interactive
97-
az aks connection create sql \
98-
--source-id /subscriptions/<source-subscription>/resourceGroups/<source_resource_group>/providers/Microsoft.ContainerService/managedClusters/<cluster> \
99-
--target-id /subscriptions/<target-subscription>/resourceGroups/<target_resource_group>/providers/Microsoft.Sql/servers/<server>/databases/<database> \
100-
--secret name=<secret-name> secret=<secret>
101-
```
96+
```azurecli-interactive
97+
az aks connection create sql \
98+
--source-id /subscriptions/<source-subscription>/resourceGroups/<source_resource_group>/providers/Microsoft.ContainerService/managedClusters/<cluster> \
99+
--target-id /subscriptions/<target-subscription>/resourceGroups/<target_resource_group>/providers/Microsoft.Sql/servers/<server>/databases/<database> \
100+
--secret name=<secret-name> secret=<secret>
101+
```
102102

103103
---
104104

0 commit comments

Comments
 (0)