Skip to content

Commit

Permalink
Add cost_analysis_enabled
Browse files Browse the repository at this point in the history
Signed-off-by: Aidan Jensen <aidan@artificial.com>
  • Loading branch information
artificial-aidan committed Aug 19, 2024
1 parent ce91dc3 commit efa2bcd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ resource "azurerm_kubernetes_cluster" "main" {
resource_group_name = data.azurerm_resource_group.main.name
automatic_channel_upgrade = var.automatic_channel_upgrade
azure_policy_enabled = var.azure_policy_enabled
cost_analysis_enabled = var.cost_analysis_enabled
disk_encryption_set_id = var.disk_encryption_set_id
dns_prefix = var.prefix
image_cleaner_enabled = var.image_cleaner_enabled
Expand Down
6 changes: 6 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,12 @@ variable "confidential_computing" {
description = "(Optional) Enable Confidential Computing."
}

variable "cost_analysis_enabled" {
type = bool
default = false
description = "(Optional) Enable Cost Analysis."
}

variable "create_role_assignment_network_contributor" {
type = bool
default = false
Expand Down

0 comments on commit efa2bcd

Please sign in to comment.