-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathredis.tf
More file actions
24 lines (22 loc) · 839 Bytes
/
redis.tf
File metadata and controls
24 lines (22 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Commenting out Redis configuration as already in Staging
/*
module "opal_redis" {
source = "git@github.com:hmcts/cnp-module-redis?ref=4.x"
product = var.product
location = "UK South"
env = var.env
common_tags = var.common_tags
redis_version = "6"
sku_name = var.sku_name
family = var.family
capacity = var.capacity
business_area = "sds"
private_endpoint_enabled = true
public_network_access_enabled = false
}
resource "azurerm_key_vault_secret" "redis_access_key" {
name = "redis-access-key"
value = module.opal_redis.access_key
key_vault_id = data.opal_key_vault.vault_id
}
*/