Changed var name

This commit is contained in:
Tom Archer 2023-03-09 13:01:57 -08:00
parent 5a1bf92dd1
commit 700fa7921e
2 changed files with 2 additions and 2 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,7 +10,7 @@ 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" {
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."