-
Notifications
You must be signed in to change notification settings - Fork 11
/
keyvault-main.tf
36 lines (29 loc) · 1.18 KB
/
keyvault-main.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#####################
## KeyVault - Main ##
#####################
# Create the Azure Key Vault - globally unique - 24 characters max
resource "azurerm_key_vault" "kopi-keyvault" {
name = "${var.region}-${var.environment}-${var.app_name}-kv"
location = azurerm_resource_group.kopi-rg.location
resource_group_name = azurerm_resource_group.kopi-rg.name
enabled_for_deployment = var.kv-enabled-for-deployment
enabled_for_disk_encryption = var.kv-enabled-for-disk-encryption
enabled_for_template_deployment = var.kv-enabled-for-template-deployment
tenant_id = var.azure-tenant-id
sku_name = var.kv-sku-name
tags = {
environment = var.environment
}
access_policy {
tenant_id = var.azure-tenant-id
object_id = var.kv-full-object-id
certificate_permissions = var.kv-certificate-permissions-full
key_permissions = var.kv-key-permissions-full
secret_permissions = var.kv-secret-permissions-full
storage_permissions = var.kv-storage-permissions-full
}
network_acls {
default_action = "Allow"
bypass = "AzureServices"
}
}