Can anybody please help shine some light on how I can go about logging/storing API calls to Azure Subscriptions via Terraform?
I've found the "azurerm_monitor_diagnostic_setting", but this doesn't seem to cover Subscriptions. And I'm just banging my head against a wall here...
Ultimately I want to achieve some alerting on certain api calls (nsg deletes, edits & other 'important events') which I believe I can acheive with "azure_monitor_activity_log_alert" via an SA. But I'm just struggling to find how to get at these logs via Terraform in the first instance?
Any help would be much appreciated.
Thanks
AFAIK, there is no supported terraform block to directly get these logs from a storage account.
As a workaround, you could access Activity log events using the following methods:
Get-AzLog
cmdlet to retrieve the Activity Log from PowerShell. See Azure Monitor PowerShell samples.az monitor activity-log
to retrieve the Activity Log from CLI. See Azure Monitor CLI samples.in this case, you can mix the CLI or PowerShell scripts in your terraform code with local-exec Provisioner or remote-exec provisioner. This would be possible to get the logs. For storage stored diagnostic logs, you may need to get the blob content via Get-AzureStorageBlob.