Adds Redis logging to log analytics

This commit is contained in:
Rob Gil 2020-01-29 11:31:21 -05:00
parent 308ea6a861
commit ffb29d45fc

View File

@ -1,10 +1,11 @@
module "redis" {
source = "../../modules/redis"
owner = var.owner
environment = var.environment
region = var.region
name = var.name
subnet_id = module.vpc.subnet_list["redis"].id
sku_name = "Premium"
family = "P"
source = "../../modules/redis"
owner = var.owner
environment = var.environment
region = var.region
name = var.name
subnet_id = module.vpc.subnet_list["redis"].id
sku_name = "Premium"
family = "P"
workspace_id = module.logs.workspace_id
}