Skip to content

Commit 60fe39c

Browse files
committed
formatting
1 parent 8b38d08 commit 60fe39c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/sql-database/includes/sql-database-create-single-database.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Create your resource group and single database using PowerShell.
8181
# Set variables for your server and database
8282
$subscriptionId = '<SubscriptionID>'
8383
$resourceGroupName = "myResourceGroup-$(Get-Random)"
84-
$location = "West US 2"
84+
$location = "West US"
8585
$adminLogin = "azureuser"
8686
$password = "PWD27!"+(New-Guid).Guid
8787
$serverName = "mysqlserver-$(Get-Random)"

articles/sql-database/sql-database-single-database-failover-group-tutorial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Create your failover group and add your single database to it using the Azure po
7171
- **Server name**: Type in a unique name for the secondary server, such as `mysqlsecondary`.
7272
- **Server admin login**: Type `azureuser`
7373
- **Password**: Type a complex password that meets password requirements.
74-
- **Location**: Choose a location from the drop-down, such as East US 2. This location cannot be the same location as your primary server.
74+
- **Location**: Choose a location from the drop-down, such as `East US`. This location cannot be the same location as your primary server.
7575

7676
> [!NOTE]
7777
> The server login and firewall settings must match that of your primary server.
@@ -92,12 +92,12 @@ Create your failover group and add your single database to it using PowerShell.
9292
```powershell-interactive
9393
# $subscriptionId = '<SubscriptionID>'
9494
# $resourceGroupName = "myResourceGroup-$(Get-Random)"
95-
# $location = "West US 2"
95+
# $location = "West US"
9696
# $adminLogin = "azureuser"
9797
# $password = "PWD27!"+(New-Guid).Guid
9898
# $serverName = "mysqlserver-$(Get-Random)"
9999
# $databaseName = "mySampleDatabase"
100-
$drLocation = "East US 2"
100+
$drLocation = "East US"
101101
$drServerName = "mysqlsecondary-$(Get-Random)"
102102
$failoverGroupName = "failovergrouptutorial-$(Get-Random)"
103103

0 commit comments

Comments
 (0)