Removed unused variable

This commit is contained in:
Tom Archer 2023-03-09 17:56:34 -08:00
parent 700fa7921e
commit 13e56f514d

View File

@ -10,12 +10,6 @@ variable "resource_group_name_prefix" {
description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription."
}
variable "analysis_services_server_name_prefix" {
type = string
default = "mys"
description = "Prefix of the Azure Analysis Services Server name that's combined with a random string to create a unique server name in your Azure subscription."
}
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"
@ -27,4 +21,3 @@ variable "backup_blob_container_uri" {
description = "The SAS URI to a private Azure Blob Storage container with read, write and list permissions. Required only if you intend to use the backup/restore functionality. See https://docs.microsoft.com/en-us/azure/analysis-services/analysis-services-backup"
default = null
}