2016-02-04 00:40:32 +01:00
---
layout: "azurerm"
page_title: "Azure Resource Manager: azurerm_sql_server"
sidebar_current: "docs-azurerm-resource-sql-server"
description: |-
Create a SQL Server.
---
# azurerm\_sql\_server
Allows you to manage an Azure SQL Database Server
2017-03-29 11:37:36 +02:00
~> **Note:** All arguments including the administrator login and password will be stored in the raw state as plain-text.
[Read more about sensitive data in state ](/docs/state/sensitive-data.html ).
2016-02-04 00:40:32 +01:00
## Example Usage
```
resource "azurerm_resource_group" "test" {
2017-02-18 23:48:50 +01:00
name = "acceptanceTestResourceGroup1"
location = "West US"
2016-02-04 00:40:32 +01:00
}
2017-02-18 23:48:50 +01:00
2016-02-04 00:40:32 +01:00
resource "azurerm_sql_server" "test" {
2017-02-18 23:48:50 +01:00
name = "mysqlserver"
resource_group_name = "${azurerm_resource_group.test.name}"
location = "West US"
version = "12.0"
administrator_login = "mradministrator"
administrator_login_password = "thisIsDog11"
tags {
environment = "production"
}
2016-02-04 00:40:32 +01:00
}
```
## Argument Reference
The following arguments are supported:
* `name` - (Required) The name of the SQL Server.
* `resource_group_name` - (Required) The name of the resource group in which to
create the sql server.
* `location` - (Required) Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
* `version` - (Required) The version for the new server. Valid values are: 2.0 (for v11 server) and 12.0 (for v12 server).
* `administrator_login` - (Required) The administrator login name for the new server.
* `administrator_login_password` - (Required) The password for the new AdministratorLogin. Please following Azures [Password Policy ](https://msdn.microsoft.com/library/ms161959.aspx )
2017-02-18 23:48:50 +01:00
* `tags` - (Optional) A mapping of tags to assign to the resource.
2016-02-04 00:40:32 +01:00
## Attributes Reference
The following attributes are exported:
2016-02-05 00:36:50 +01:00
* `id` - The SQL Server ID.
2016-02-04 00:40:32 +01:00
* `fully_qualified_domain_name` - The fully qualified domain name of the Azure SQL Server (e.g. myServerName.database.windows.net)
2016-11-22 13:13:11 +01:00
## Import
2017-02-18 23:48:50 +01:00
SQL Servers can be imported using the `resource id` , e.g.
2016-11-22 13:13:11 +01:00
```
terraform import azurerm_sql_server.test /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Sql/servers/myserver
```