Adds log_analytics module and workspace

This commit is contained in:
Rob Gil
2020-01-27 12:43:46 -05:00
parent 45322c871d
commit 0900c01d88
4 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
variable "region" {
type = string
description = "Region this module and resources will be created in"
}
variable "name" {
type = string
description = "Unique name for the services in this module"
}
variable "environment" {
type = string
description = "Environment these resources reside (prod, dev, staging, etc)"
}
variable "owner" {
type = string
description = "Owner of the environment and resources created in this module"
}