Skip to main content
Jorge Bernhardt Jorge Bernhardt
  1. Posts/

How to configure Azure Bastion diagnostic settings

·781 words·4 mins· 100 views · 5 likes ·
Azure Bastion Azure CLI Azure Cloud Shell Azure PowerShell

Hello! everybody. Today I will show you how to configure Azure Bastion Diagnostic to send logs and metrics to a storage account using PowerShell and Azure CLI. Once this configuration is established, you can use the stored information to find out which users connected through Azure Bastion, when, from where, and metric information about the workloads of the Azure Bastion host.

Prerequisites>

Prerequisites #

  • This tutorial assumes that you already have an Azure Storage account. You can use an existing Storage Account, or if you want to create a new one, check out this link.
  • This tutorial assumes that you already have an Azure Bastion host. You can use an existing Bastion host, or if you want to create a new one, check out this link.
Important:  The storage account must be in the same subscription as your Azure Bastion host.>

Important:  The storage account must be in the same subscription as your Azure Bastion host. #

In the following examples, I will set the retention policy to 365 days, but if you do not want to apply any retention policy and retain data forever, set retention (days) to 0.

Azure PowerShell Workaround>

Azure PowerShell Workaround #

The simplest way to get started is to sign in interactively at the command line.

Connect-AzAccount

This cmdlet will bring up a dialog box prompting you for your email address and password associated with your Azure account. If you have more than one subscription associated with your mail account, you can choose the default subscription. To perform this task, we will use the following commands:

Get-AzSubscription
Select-AzSubscription -Subscription "My Subscription"

Once you set your default subscription, you’re ready to start.

Set the variables>

Set the variables #

Here, we define the characteristics of our environment and the resource’s properties.

$resourceGroupName="RG-DEMO-HUB"
$bastionName="AzBastion"
$storageAccountName="storageaccountdemohub"

To improve the visualization of the following commands, I will store the resources into variables.

$bastion= Get-AzBastion `
    -ResourceGroupName $ResourceGroupName `
    -Name $bastionName
$storageaccount = Get-AzStorageAccount `
    -ResourceGroupName $resourceGroupName `
    -StorageAccountName $storageAccountName
Sets the logs and metrics settings for the Azure Bastion>

Sets the logs and metrics settings for the Azure Bastion #

To store the event log for the resource, you must use the Set-AzDiagnosticSetting cmdlet with the following syntax. At the time of writing this article, only records are available for the category: BastionAuditLogs.

Set-AzDiagnosticSetting `
    -ResourceId $bastion.Id `
    -storageAccountId $storageaccount.Id `
    -Enabled $true `
    -Category BastionAuditLogs `
    -RetentionEnabled $true `
    -RetentionInDays 365

If you also want to store the metric record for the resource, you must use the Set-AzDiagnosticSetting cmdlet with the following syntax.

Set-AzDiagnosticSetting `
    -ResourceId $bastion.Id \`
    -storageAccountId $storageaccount.Id `
    -Enabled $true `
    -MetricCategory AllMetrics `
    -RetentionEnabled $true `
    -RetentionInDays 365
Verify the changes made>

Verify the changes made #

To verify the established diagnostic settings, you should use the Get-AzDiagnosticSetting cmdlet with the following syntax.

Get-AzDiagnosticSetting `
    -ResourceId $bastion.Id `
    | Select-Object Logs, Metrics `
    |Format-List

Get-AzDiagnosticSetting

Remove diagnostic settings>

Remove diagnostic settings #

If you want to remove the diagnostic setting for the Azure Bastion resource, you should use the Remove-AzDiagnosticSetting cmdlet with the following syntax.

Remove-AzDiagnosticSetting -ResourceId $bastion.Id
Azure CLI Workaround>

Azure CLI Workaround #

In this case, we will use Azure Cloud Shell, a browser-based shell built into Azure Portal. This allows us to use the Azure command-line tools (Azure CLI and Azure PowerShell) directly from a browser. If you want to know more about Azure Cloud Shell, check out this link. First, we define the characteristics of our environment and store the values in variables.

resourceGroupName="RG-DEMO-HUB"
bastionName="AzBastion"
storageAccountName="storageaccountdemohub"

To improve the visualization of the following commands, I will store the resources into variables.

stoaccountid=$(az storage account show --name $storageAccountName --resource-group $resourceGroupName --query id --output tsv)
bastionid=$(az network bastion show --name $bastionName --resource-group $resourceGroupName --query id --output tsv)
Sets the logs and metrics settings for the Azure Bastion>

Sets the logs and metrics settings for the Azure Bastion #

To store the event logs and metrics for the resource, you should use the following command.

az monitor diagnostic-settings create \
--storage-account $stoaccountid \
--resource $bastionid \
--name "Bastion Diagnostic" \
--logs '[{"category":"BastionAuditLogs","enabled":true,"retentionPolicy":{"days":"365" "enabled":true}}]' \
--metrics '[{"category": "AllMetrics","enabled": true,"retentionPolicy":{"days":"365","enabled":true}}]'
Verify the changes made>

Verify the changes made #

To verify the established diagnostic settings, you should use the following command.

az monitor diagnostic-settings show \
--name "Bastion Diagnostic" \
--resource $bastionid \
-o yaml

Azure Bastion diagnostic

Remove diagnostic settings>

Remove diagnostic settings #

If you want to remove the diagnostic setting for the Azure Bastion resource, you should use the following commands.

az monitor diagnostic-settings delete \
--name "Bastion Diagnostic" \
--resource $bastionid

Thanks for reading my post. I hope you find it helpful. If you want to know more about Azure Bastion, check out this link.