azure_sql_database_service
Creates a new SQL database service on an Azure database server.
Example Usage
resource "azure_sql_database_service" "sql-server" {
    name = "terraform-testing-db-renamed"
    database_server_name = "flibberflabber"
    edition = "Standard"
    collation = "SQL_Latin1_General_CP1_CI_AS"
    max_size_bytes = "5368709120"
    service_level_id = "f1173c43-91bd-4aaa-973c-54e79e15235b"
}
Argument Reference
The following arguments are supported:
- 
    
name- (Required) The name of the database service. - 
    
database_server_name- (Required) The name of the database server this service should run on. Changes here force the creation of a new resource. - 
    
edition- (Optional) The edition of the database service. For more information on each variant, please view this link. - 
    
collation- (Optional) The collation to be used within the database service. Defaults to the standard Latin charset. - 
    
max_size_bytes- (Optional) The maximum size in bytes the database service should be allowed to expand to. Range depends on the databaseeditionselected above. - 
    
service_level_id- (Optional) The ID corresponding to the service level per edition. Please refer to this link for more details. 
Attributes Reference
The following attributes are exported:
id- The database service ID. Coincides with the givenname.
See the source of this document at Terraform.io