variables.tf (38 lines of code) (raw):

variable "kind" { type = string description = "The kind of the this resource." } variable "location" { type = string description = "Azure region where the resource should be deployed." nullable = false } variable "name" { type = string description = "The name of the this resource." nullable = false } variable "public_network_access_enabled" { type = bool description = "Whether network access from public internet to the Data Collection Endpoint are allowed" } variable "resource_group_name" { type = string description = "The resource group where the resources will be deployed." nullable = false } variable "enable_telemetry" { type = bool default = true description = <<DESCRIPTION This variable controls whether or not telemetry is enabled for the module. For more information see <https://aka.ms/avm/telemetryinfo>. If it is set to false, then no telemetry will be collected. DESCRIPTION nullable = false } variable "tags" { type = map(string) default = null description = "(Optional) Tags of the resource." }