Skip to content

Commit cf4641b

Browse files
Merge pull request #290957 from TimShererWithAquent/us345646-1
SFI remediation: DAIC databases | 345624
2 parents 0bdb3d1 + 70f7c9c commit cf4641b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

articles/azure-sql-edge/connect.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Because two containers that are running on the same host are on the same Docker
8181
import pyodbc
8282
server = 'MySQLEdgeContainer' # Replace this with the actual name of your SQL Edge Docker container
8383
username = 'sa' # SQL Server username
84-
password = 'MyStrongestP@ssword' # Replace this with the actual SA password from your deployment
84+
password = '<password>' # Replace this with the actual SA password from your deployment
8585
database = 'MyEdgeDatabase' # Replace this with the actual database name from your deployment. If you do not have a database created, you can use Master database.
8686
db_connection_string = "Driver={ODBC Driver 17 for SQL Server};Server=" + server + ";Database=" + database + ";UID=" + username + ";PWD=" + password + ";"
8787
conn = pyodbc.connect(db_connection_string, autocommit=True)
@@ -95,7 +95,7 @@ You might want to connect to the instance of Azure SQL Edge from another machine
9595
import pyodbc
9696
server = '192.168.2.121,1600' # Replace this with the actual name or IP address of your SQL Edge Docker container
9797
username = 'sa' # SQL Server username
98-
password = 'MyStrongestP@ssword' # Replace this with the actual SA password from your deployment
98+
password = '<password>' # Replace this with the actual SA password from your deployment
9999
database = 'MyEdgeDatabase' # Replace this with the actual database name from your deployment. If you do not have a database created, you can use Master database.
100100
db_connection_string = "Driver={ODBC Driver 17 for SQL Server};Server=" + server + ";Database=" + database + ";UID=" + username + ";PWD=" + password + ";"
101101
conn = pyodbc.connect(db_connection_string, autocommit=True)

articles/azure-sql-edge/tutorial-deploy-azure-resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Deploy the Azure resources required by this Azure SQL Edge tutorial. These resou
7272
$imagePublisher = "microsoft_iot_edge"
7373
$imageSku = "ubuntu_1604_edgeruntimeonly"
7474
$AdminAcc = "iotadmin"
75-
$AdminPassword = ConvertTo-SecureString "IoTAdmin@1234" -AsPlainText -Force
75+
$AdminPassword = ConvertTo-SecureString "<password>" -AsPlainText -Force
7676
$VMSize = "Standard_DS3"
7777
$NetworkName = "MyNet"
7878
$NICName = "MyNIC"

0 commit comments

Comments
 (0)