Skip to content

Commit

Permalink
fix keyvault.md
Browse files Browse the repository at this point in the history
  • Loading branch information
carlospolop committed Jan 9, 2025
1 parent 16783ef commit 67fdc64
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions scripts/clean_unused_images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ find "$IMAGE_FOLDER" -type f | while IFS= read -r image; do
# Extract the filename without the path
image_name=$(basename "$image")

# If image file name contains "sponsor", skip it
if [[ "$image_name" == *"sponsor"* ]]; then
echo "Skipping sponsor image: $image_name"
continue
fi

echo "Checking image: $image_name"

# Search for the image name using rg and capture the result
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
For more information about this service check:

{{#ref}}
../az-services/keyvault.md
../az-services/az-keyvault.md
{{#endref}}

### Microsoft.KeyVault/vaults/secrets/getSecret/action
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
For more information about this service check:

{{#ref}}
../az-services/keyvault.md
../az-services/az-keyvault.md
{{#endref}}

### Microsoft.KeyVault/vaults/write
Expand Down

0 comments on commit 67fdc64

Please sign in to comment.