From 88450c1fc30deabbc180da9d0b2dfc36ce62eaff Mon Sep 17 00:00:00 2001 From: Pierre Audonnet Date: Fri, 7 Jun 2024 14:07:20 -0400 Subject: [PATCH] Update GrantPermissions.ps1 --- Deploy/GrantPermissions.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Deploy/GrantPermissions.ps1 b/Deploy/GrantPermissions.ps1 index 57ac7a1..e2b2ff0 100644 --- a/Deploy/GrantPermissions.ps1 +++ b/Deploy/GrantPermissions.ps1 @@ -63,7 +63,8 @@ param( # Check if the script is running in Azure Cloud Shell if( $env:AZUREPS_HOST_ENVIRONMENT -like "cloud-shell*" ) { - Write-Host "[+] The script is running in Azure Cloud Shell, Device Code flow will be used for authentication" -ForegroundColor Yellow + Write-Host "[+] The script is running in Azure Cloud Shell, Device Code flow will be used for authentication." + Write-Host "[+] It will look like the connection is coming from the Azure data center and not your client's location." -ForegroundColor Yellow $DeviceCodeFlow = $true }