Skip to content

Commit

Permalink
Fix: Fixed Variabled Type
Browse files Browse the repository at this point in the history
  • Loading branch information
vedant990 committed Feb 11, 2025
1 parent 6c3becc commit 0ce144c
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -487,9 +487,19 @@ variable "key_vault_rbac_auth_enabled" {
}

variable "extensions" {
type = list(any)
type = list(object({
extension_publisher = string
extension_name = string
extension_type = string
extension_type_handler_version = string
auto_upgrade_minor_version = bool
automatic_upgrade_enabled = bool
settings = string
protected_settings = string
}))

default = []
description = "List of extensions for azure virtual machine"
description = "List of extensions for Azure Virtual Machine"
}

variable "log_analytics_destination_type" {
Expand Down

0 comments on commit 0ce144c

Please sign in to comment.