Skip to content

Instantly share code, notes, and snippets.

@jikuja
jikuja / README.md
Last active March 3, 2024 18:49
Azure Storage acccount types

Storage account types

Configuration on resource property

Kind property

value usage
'BlobStorage' Legacy: Blob Storage
'BlockBlobStorage' Portal: Premium / Block blobs
@jikuja
jikuja / KQL-snippets.md
Last active April 23, 2024 10:25
Log analytics workspace and Azure Resource Graph queries

Collection of KQL queries

@jikuja
jikuja / README.md
Last active February 11, 2024 18:55
Azure icon collections
@jikuja
jikuja / README.md
Last active November 21, 2023 17:36
HTTP debugging tools
@jikuja
jikuja / AzureActivity.md
Last active November 12, 2023 13:34
Azure Logging
@jikuja
jikuja / README.md
Last active August 13, 2023 18:25
VPN/Routing troubleshooting

Troubleshoot

The script

Run attached script.

Script output samples

OS X: Access to key vault not using P2S VPN

@jikuja
jikuja / README.md
Created June 7, 2023 12:36
Azure Data residency
@jikuja
jikuja / README.md
Last active June 4, 2023 13:10
Convert font glyphs to SVGs
fontforge -lang=ff -c 'Open($1);SelectAll();UnlinkReference();Export($2);' "$FONT" "${OUTPUT}/%n_%e.svg"
@jikuja
jikuja / MMA-notes.md
Created March 29, 2023 08:44
Notes for MMA
$mma = New-Object -ComObject 'AgentConfigManager.MgmtSvcCfg'
$mma.GetCloudWorkspaces()
$workspaceId = "<Your workspace Id>"
$workspaceKey = "<Your workspace Key>"
$mma = New-Object -ComObject 'AgentConfigManager.MgmtSvcCfg'
$mma.AddCloudWorkspace($workspaceId, $workspaceKey)