MENU

Fun & Interesting

What is Azure KeyVault?

NextOps Videos 26,037 lượt xem 3 years ago
Video Not Working? Fix It Now

In this video, i am going to discuss about azure keyvault in an easiest and detailed way. Along with other components, key vaults provide a specific functionality to store sensitive information in a centralized vault like service.

Explore what an azure key vault is and how it works?

Command i used in the video
$response = Invoke-RestMethod -Uri 'http://169.254.169.254/metadata/identity/oauth2/token?api-version=2018-02-01&resource=https%3A%2F%2Fvault.azure.net' -Method GET -Headers @{Metadata="true"}
$response.access_token
$result = Invoke-RestMethod -Uri URI?api-version=2016-10-01 -Headers @{"Authorization" = "Bearer $($response.access_token)"}
$result | select id, value, contentType

Replace URI with your key URI from the vault.

#azure keyvault #nextops #nextops videos

Comment