Azure SQL Server name cannot be mixed case

Can only be made up of lowercase letters 'a'-'z', the numbers 0-9 and the hyphen. The hyphen may not lead or trail in the name.

Changed MySqlServer to mysqlserver
This commit is contained in:
Brian Webb 2017-02-03 16:13:41 -05:00 committed by GitHub
parent 77e8bec1da
commit 8d5d47e649
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ resource "azurerm_resource_group" "test" {
location = "West US"
}
resource "azurerm_sql_server" "test" {
name = "MySqlServer"
name = "mysqlserver"
resource_group_name = "${azurerm_resource_group.test.name}"
location = "West US"
version = "12.0"