Allows you to set a user or group as the AD administrator for an Azure SQL server
data "azurerm_client_config" "current" {}
resource "azurerm_resource_group" "test" {
name = "acceptanceTestResourceGroup1"
location = "West US"
}
resource "azurerm_sql_server" "test" {
name = "mysqlserver"
resource_group_name = "${azurerm_resource_group.test.name}"
location = "${azurerm_resource_group.test.location}"
version = "12.0"
administrator_login = "4dm1n157r470r"
administrator_login_password = "4-v3ry-53cr37-p455w0rd"
}
resource "azurerm_sql_active_directory_administrator" "test" {
server_name = "${azurerm_sql_server.test.name}"
resource_group_name = "${azurerm_resource_group.test.name}"
login = "sqladmin"
tenant_id = "${data.azurerm_client_config.current.tenant_id}"
object_id = "${data.azurerm_client_config.current.service_principal_object_id}"
}
The following arguments are supported:
server_name - (Required) The name of the SQL Server on which to set the administrator. Changing this forces a new resource to be created.
resource_group_name - (Required) The name of the resource group for the SQL server. Changing this forces a new resource to be created.
login - (Required) The login name of the principal to set as the server administrator
object_id - (Required) The ID of the principal to set as the server administrator
tenant_id - (Required) The Azure Tenant ID
The following attributes are exported:
id - The SQL Active Directory Administrator ID. A SQL Active Directory Administrator can be imported using the resource id, e.g.
terraform import azurerm_sql_active_directory_administrator.administrator /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Sql/servers/myserver/administrators/activeDirectory
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/azurerm/r/sql_active_directory_administrator.html