Skip to content

Commit

Permalink
Dexterw/features/app monitoring - follow up (#144)
Browse files Browse the repository at this point in the history
* update readme; update app monitoring variables

* removed default e-mail alerts

* update readme; restored default e-mail configuration

* format variables.tf

update readme

Update Readme.md

Update README.md

Update README.md

Redesigned README.md

provide clarity regarding resourceIds and scaling dimensions

update README; remove comments

Update README.md and azure simple variables

added attributes section to README.md

* removed terraform plan
  • Loading branch information
TechnicallyWilliams authored May 31, 2019
1 parent 6aedc0f commit 94ed5a8
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 94ed5a8

Please sign in to comment.