Skip to content

Commit c8d2655

Browse files
authored
Merge pull request #187205 from dnethi/patch-9
Updated to include SQL auth secret
2 parents b31ede2 + f73fdc9 commit c8d2655

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

articles/azure-arc/data/deploy-active-directory-sql-managed-instance.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,15 @@ To support Active Directory authentication on SQL Managed Instance, new spec fie
186186
Prepare the following yaml specification to deploy a SQL Managed Instance. The fields described above should be specified in the spec.
187187

188188
```yaml
189+
apiVersion: v1
190+
data:
191+
password: <your base64 encoded password>
192+
username: <your base64 encoded username>
193+
kind: Secret
194+
metadata:
195+
name: my-login-secret
196+
type: Opaque
197+
---
189198
apiVersion: sql.arcdata.microsoft.com/v2
190199
kind: SqlManagedInstance
191200
metadata:
@@ -209,7 +218,7 @@ spec:
209218
keytabSecret: <Keytab secret name>
210219
services:
211220
primary:
212-
type: NodePort
221+
type: LoadBalancer
213222
dnsName: <Endpoint DNS name>
214223
port: <Endpoint port number>
215224
storage:

0 commit comments

Comments
 (0)