Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
97ff76f
docs: documentation improvements:
JustAGhosT Jul 28, 2025
e78fc30
feat(azure): improve user input validation for Azure connection prompt
JustAGhosT Jul 28, 2025
a902017
fix: add integrity and crossorigin attributes to Mermaid script
JustAGhosT Jul 28, 2025
e4cae47
refactor: reorganize linting tools and improve documentation
JustAGhosT Jul 28, 2025
0fb8c17
fix(docs): pin Mermaid to v10.9.1 with SRI hash for security
JustAGhosT Jul 28, 2025
7e44263
docs: add project CHANGELOG and enhance markdown linter
JustAGhosT Jul 28, 2025
2d9360d
fix: update documentation paths, fix markdown lint tool and improve s…
JustAGhosT Jul 29, 2025
dfcfd1c
fix(powershell): improve module installation and documentation paths
JustAGhosT Jul 29, 2025
7f5ddbb
fix(markdown-lint): improve security and performance of linter
JustAGhosT Jul 29, 2025
dc4cb3d
docs: improve documentation structure and markdown linting
JustAGhosT Jul 29, 2025
52df868
docs: fix heading level for Get-HomeLabVersion in Core README
JustAGhosT Jul 29, 2025
2703b82
Update tools/markdown_lint/linter.py
JustAGhosT Jul 29, 2025
c842bfb
fix(markdown_lint): remove unused parameters from linter methods
JustAGhosT Jul 30, 2025
ac79ef0
refactor(markdown_lint): extract repeated message into constant
JustAGhosT Jul 30, 2025
33a6a2a
Update tools/markdown_lint/linter.py
JustAGhosT Jul 30, 2025
65e7c2b
Update tools/markdown_lint/linter.py
JustAGhosT Jul 30, 2025
33cb98a
Update tools/markdown_lint/linter.py
JustAGhosT Jul 30, 2025
989eb08
Update tools/markdown_lint/linter.py
JustAGhosT Jul 30, 2025
05a8a6b
Update tools/markdown_lint/linter.py
JustAGhosT Jul 30, 2025
4c5d133
refactor(markdown_lint): improve code organization with helper functions
JustAGhosT Jul 30, 2025
89b8d1f
refactor(markdown_lint): restructure linter.py with better code organ…
JustAGhosT Jul 30, 2025
9c8289f
refactor(markdown_lint): simplify function signatures and remove redu…
JustAGhosT Jul 30, 2025
f726ded
refactor(markdown_lint): improve markdown file finder implementation
JustAGhosT Jul 30, 2025
b830727
feat(markdown-lint): add dynamic repo root detection and improve erro…
JustAGhosT Jul 30, 2025
603c243
refactor: improve module loading and fix documentation issues
JustAGhosT Jul 30, 2025
abffd50
refactor: replace custom logging with standard PowerShell output func…
JustAGhosT Jul 30, 2025
7f7034a
refactor(markdown_lint): improve code organization and fix closed ATX…
JustAGhosT Jul 30, 2025
1d5205b
docs: improve formatting and readability in documentation
JustAGhosT Jul 30, 2025
4f67759
fix(docs): correct ordered list numbering in DEVELOPMENT.md and remov…
JustAGhosT Jul 30, 2025
6539f2a
fix: correct numbered list formatting in DEVELOPMENT.md
JustAGhosT Jul 30, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
97 changes: 0 additions & 97 deletions CHANGELOG.md

This file was deleted.

10 changes: 7 additions & 3 deletions HomeLab/functions/Get-AzureConnection.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,13 @@ function Get-AzureConnection {
else {
Write-Log -Message "Not connected to Azure" -Level "Warning"

# Ask if user wants to connect
$connect = Read-Host "You are not connected to Azure. Connect now? (Y/N)"
if ($connect -eq "Y" -or $connect -eq "y") {
# Ask if user wants to connect with proper validation
do {
$connect = Read-Host "You are not connected to Azure. Connect now? (Y/N)"
$connect = $connect.Trim().ToUpper()
} while ($connect -notin @('Y', 'N', 'YES', 'NO'))

if ($connect -in @('Y', 'YES')) {
# Connect to Azure
$context = Connect-AzAccount -ErrorAction Stop

Expand Down
Loading
Loading