Skip to content

Commit

Permalink
Merge pull request #7 from microsoft/master
Browse files Browse the repository at this point in the history
Dexterw/features/app monitoring - follow up (#144)
  • Loading branch information
Nicholas M. Iodice committed May 31, 2019
2 parents 655d863 + 94ed5a8 commit 1cbe9d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion infra/modules/providers/azure/app-monitoring/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ module "service_plan" {
module "app_monitoring" {
source = "../../modules/providers/azure/app-monitoring"
resource_group_name = "${azurerm_resource_group.svcplan.name}"
resource_group_name = "${module.service_plan.resource_group_name}"
resource_ids = ["${module.service_plan.app_service_plan_id}"]
action_group_name = "${var.action_group_name}"
action_group_email_receiver = "${var.action_group_email_receiver}"
Expand Down
3 changes: 2 additions & 1 deletion infra/modules/providers/azure/app-monitoring/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ variable "action_group_name" {
variable "action_group_email_receiver" {
description = "The e-mail receiver for an alert rule resource."
type = "string"
default = ""
}

variable "action_group_email_receiver_name" {
Expand Down Expand Up @@ -77,4 +78,4 @@ variable "metric_alert_period" {
description = "The look back window over which metric values are checked."
type = "string"
default = "PT5M"
}
}

0 comments on commit 1cbe9d2

Please sign in to comment.