Update add-single-db-to-failover-group-az-ps.ps1 (#423)

testing adding an id reference
This commit is contained in:
Mike F. Robbins 2023-12-06 13:07:02 -06:00 коммит произвёл GitHub
Родитель 64d5426ad5
Коммит 61e5a56248
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -70,6 +70,7 @@ $drServer = New-AzSqlServer -ResourceGroupName $resourceGroupName `
-ArgumentList $adminlogin, $(ConvertTo-SecureString -String $password -AsPlainText -Force))
$drServer
# <CreateFailoverGroup>
# Create a failover group between the servers
$failovergroup = Write-host "Creating a failover group between the primary and secondary server..."
@ -94,6 +95,8 @@ Add-AzSqlDatabaseToFailoverGroup `
-FailoverGroupName $failoverGroupName
Write-host "Successfully added the database to the failover group..."
# </CreateFailoverGroup>
# Check role of secondary replica
Write-host "Confirming the secondary replica is secondary...."
(Get-AzSqlDatabaseFailoverGroup `