dependency/azapi_examples/Microsoft.Network_networkWatchers_flowLogs@2023-11-01/main.tf (128 lines of code) (raw):

terraform { required_providers { azapi = { source = "Azure/azapi" } } } provider "azapi" { skip_provider_registration = false } variable "resource_name" { type = string default = "acctest0001" } variable "location" { type = string default = "eastus2" } resource "azapi_resource" "resourceGroup" { type = "Microsoft.Resources/resourceGroups@2020-06-01" name = var.resource_name location = var.location } resource "azapi_resource" "virtualNetwork" { type = "Microsoft.Network/virtualNetworks@2022-07-01" parent_id = azapi_resource.resourceGroup.id name = var.resource_name location = var.location body = { properties = { addressSpace = { addressPrefixes = [ "10.0.0.0/16", ] } dhcpOptions = { dnsServers = [ ] } subnets = [ ] } } schema_validation_enabled = false response_export_values = ["*"] lifecycle { ignore_changes = [body.properties.subnets] } } resource "azapi_resource" "networkWatchers" { type = "Microsoft.Network/networkWatchers@2023-11-01" parent_id = azapi_resource.resourceGroup.id name = var.resource_name location = var.location body = { properties = { } } schema_validation_enabled = false response_export_values = ["*"] } resource "azapi_resource" "storageAccount" { type = "Microsoft.Storage/storageAccounts@2021-09-01" parent_id = azapi_resource.resourceGroup.id name = var.resource_name location = var.location body = { kind = "StorageV2" properties = { accessTier = "Hot" allowBlobPublicAccess = true allowCrossTenantReplication = true allowSharedKeyAccess = true defaultToOAuthAuthentication = false encryption = { keySource = "Microsoft.Storage" services = { queue = { keyType = "Service" } table = { keyType = "Service" } } } isHnsEnabled = false isNfsV3Enabled = false isSftpEnabled = false minimumTlsVersion = "TLS1_2" networkAcls = { defaultAction = "Allow" } publicNetworkAccess = "Enabled" supportsHttpsTrafficOnly = true } sku = { name = "Standard_LRS" } } schema_validation_enabled = false response_export_values = ["*"] } resource "azapi_resource" "flowLog" { type = "Microsoft.Network/networkWatchers/flowLogs@2023-11-01" name = var.resource_name location = var.location parent_id = azapi_resource.networkWatchers.id body = { properties = { enabled = true flowAnalyticsConfiguration = { networkWatcherFlowAnalyticsConfiguration = { enabled = false } } format = { type = "JSON" version = 2 } retentionPolicy = { days = 7 enabled = true } storageId = azapi_resource.storageAccount.id targetResourceId = azapi_resource.virtualNetwork.id } } }