Skip to content
This repository was archived by the owner on Mar 30, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions azure/terraform/monitoring/budget-alert-subscription/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ resource "azurerm_consumption_budget_subscription" "subscription_budget" {
operator = "EqualTo"

contact_emails = var.contact_emails

contact_groups = [
var.azurerm_monitor_action_group_id,
]
}

notification {
Expand All @@ -42,10 +38,6 @@ resource "azurerm_consumption_budget_subscription" "subscription_budget" {

contact_emails = var.contact_emails

contact_groups = [
var.azurerm_monitor_action_group_id,
]

}

}
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,6 @@ variable "forcasted_threshold" {
description = "The forcasted percentage of the monthly budget at which you wish to activate the alert upon reaching. E.g. '15' for 15% or '120' for 120%"
}

variable "azurerm_monitor_action_group_id" {
type = string
description = "ID of the Action group if existed."
default = ""
}

// Uncomment next 2 variables if you want to change the start and end date via inputs --------------------------------
# variable "end_date" {
Expand Down