Tom Archer 195aebd12b
User Story 60501: 101-databricks-cmk-dbfs (#219)
* Part of POC to test generating sample code and articles using OpenAI.
2023-05-31 13:44:28 +08:00

116 lines
3.1 KiB
HCL

variable "resource_group_location" {
type = string
description = "Location for creating resource."
default = "East US 2"
}
variable "resource_group_name_prefix" {
type = string
description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription."
default = "rg"
}
variable "workspace_name_prefix" {
type = string
description = "Prefix of the Azure Databricks workspace name that's combined with a random ID so name is unique in your Azure subscription."
default = "db"
}
variable "workspace_name" {
type = string
description = "Azure Databricks workspace name."
default = null
}
variable "wssku" {
type = string
description = "Pricing Tier of the Azure Databricks workspace."
default = "premium"
}
variable "key_vault_name_prefix" {
type = string
description = "Prefix of the Azure Key Vault name that's combined with a random ID so name is unique in your Azure subscription."
default = "vault"
}
variable "key_vault_name" {
type = string
description = "The name of the key vault to be created. The value will be randomly generated if blank."
default = null
}
variable "sku_name" {
type = string
description = "SKU tier of Azure Key Vault"
default = "premium"
}
variable "key_name_prefix" {
type = string
description = "Prefix of the Key Vault key name that's combined with a random ID so name is unique in your Azure subscription."
default = "key"
}
variable "key_name" {
type = string
description = "The name of the key to be created. The value will be randomly generated if blank."
default = null
}
variable "key_permissions" {
type = list(string)
description = "List of key permissions."
default = [
"Create",
"Decrypt",
"Delete",
"Encrypt",
"Get",
"GetRotationPolicy",
"List",
"Purge",
"Recover",
"Restore",
"SetRotationPolicy",
"Sign",
"UnwrapKey",
"Update",
"Verify",
"WrapKey"
]
}
variable "secret_permissions" {
type = list(string)
description = "List of secret permissions."
default = ["Set"]
}
variable "key_type" {
type = string
description = "The JsonWebKeyType of the key to be created."
default = "RSA"
validation {
condition = contains(["EC", "EC-HSM", "RSA", "RSA-HSM"], var.key_type)
error_message = "The key_type must be one of the following: EC, EC-HSM, RSA, RSA-HSM."
}
}
variable "key_opts" {
type = list(string)
description = "The permitted JSON web key operations of the key to be created."
default = ["decrypt", "encrypt", "sign", "unwrapKey", "verify", "wrapKey"]
}
variable "key_size" {
type = number
description = "The size in bits of the key to be created."
default = 2048
}
variable "msi_id" {
type = string
description = "The Managed Service Identity ID. Set this value if you're running this example using Managed Identity as the authentication method."
default = null
}