merged cmk into hub.tf

This commit is contained in:
github-actions[bot]
2024-05-15 21:17:25 +00:00
committed by lonegunmanb
parent 097321f7d5
commit 6d7c599850
4 changed files with 22 additions and 50 deletions

View File

@ -15,4 +15,14 @@ variable "sku" {
type = string
description = "The sku name of the Azure Analysis Services server to create. Choose from: B1, B2, D1, S0, S1, S2, S3, S4, S8, S9. Some skus are region specific. See https://docs.microsoft.com/en-us/azure/analysis-services/analysis-services-overview#availability-by-region"
default = "S0"
}
}
//Optional: For Customer Managed Keys, uncomment this part AND the corresponding section in hub.tf
variable "cmk_keyvault_key_uri" {
description = "Key vault uri to access the encryption key."
}
variable "encryption_status" {
description = "Indicates whether or not the encryption is enabled for the workspace."
default = "Enabled"
}