Skip to content

Commit

Permalink
Incorporate testing feedback (#347)
Browse files Browse the repository at this point in the history
* toggle prompts by support

* describe kv location
  • Loading branch information
KSchlobohm authored Dec 19, 2023
1 parent ef9fddf commit 9dfba6e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions infra/scripts/predeploy/set-app-configuration.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ else {

# Prompt formatting features

$defaultColor = if ($Host.UI.SupportsVirtualTerminal) { "`e[0m" } else { "" }
$successColor = if ($Host.UI.SupportsVirtualTerminal) { "`e[32m" } else { "" }
$highlightColor = if ($Host.UI.SupportsVirtualTerminal) { "`e[36m" } else { "" }
$defaultColor = if ($PSVersionTable.PSVersion.Major -ge 6) { "`e[0m" } else { "" }
$successColor = if ($PSVersionTable.PSVersion.Major -ge 6) { "`e[32m" } else { "" }
$highlightColor = if ($PSVersionTable.PSVersion.Major -ge 6) { "`e[36m" } else { "" }

# End of Prompt formatting features

Expand Down
2 changes: 2 additions & 0 deletions isolated-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ The default username for the jump host is `azureadmin` and the password was set

1. Retrieve the username and password for your jump host:

- Locate the Hub resource group in the Azure Portal.
- Open the Azure Key Vault from the list of resources.
- Select **Secrets** from the menu sidebar.
- Select **Jumphost--AdministratorPassword**.
- Select the currently enabled version.
Expand Down

0 comments on commit 9dfba6e

Please sign in to comment.