Merge pull request #40 from fabiohaifa/ISSUE-34

chore: documentation adjustment
This commit is contained in:
Fabio Padua 2022-02-11 18:01:30 -03:00 коммит произвёл GitHub
Родитель 9a44c3a3e8 bc07be5304
Коммит b3cd95dc82
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 9 добавлений и 2 удалений

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

@ -98,7 +98,7 @@ Execute all these steps below to setup your evironment before running the Hands-
```powershell
az config set extension.use_dynamic_install=yes_without_prompt
Connect-AzureAD
./quickstart/scripts/cloud-setup/Deploy-AzurePreReqs.ps1 -ConfigurationFile "quickstart/configs/cloud-setup/hol.json"
```

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

@ -155,7 +155,14 @@ function AssignApplicationAdministratorAZRole
}
# Add the SP to role
Add-AzureADDirectoryRoleMember -ObjectId $role.ObjectId -RefObjectId $ObjectId
try {
Add-AzureADDirectoryRoleMember -ObjectId $role.ObjectId -RefObjectId $ObjectId
LogInfo -Message "Service Principal add into Role Application administrator with success!"
}
catch {
LogInfo -Message "Service Principal already have Application administrator role."
}
}
function AssignRoleIfNotExists