Merge pull request #186 from TomArcherMsft/UserStory60501-analysis-services-create

Changed var name
This commit is contained in:
Mark Gray (MSFT) 2023-03-10 14:11:22 -08:00 committed by GitHub
commit c3ff407cc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 8 deletions

View File

@ -2,6 +2,6 @@ output "resource_group_name" {
value = azurerm_resource_group.rg.name
}
output "azurerm_analysis_services_server_name" {
output "analysis_services_server_name" {
value = azurerm_analysis_services_server.server.name
}

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 "azurerm_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
}