azure::sql-elastic-pool

Creates a sql elastic pool.

Example

azure::sql-elastic-pool sql-elastic-pool-example
    name: "sql-elastic-pool"
    edition: "Basic"
    dtu-min: "eDTU_0"
    dtu-max: "eDTU_5"
    dtu-reserved: "eDTU_50"
    sql-server: $(azure::sql-server sql-server-example)
    tags: {
        Name: "sql-elastic-pool-example"
    }
end

Attributes

Attribute Description
database-names set The databases within the elastic pool.
dtu-max The maximum eDTU for the each database in the elastic pool. (Required)
dtu-min The minimum of eDTU for each database in the elastic pool. (Required)
dtu-reserved The total shared eDTU for the elastic pool. (Required)
edition The edition of the elastic pool. Valid values are Basic, Premium, or Standard Valid values are Basic, Premium or Standard. (Required)
name The name of the elastic pool. (Required)
storage-capacity The storage limit for the database elastic pool. Required when used with Standard or Premium editions.
sql-server The SQL Server where the elastic pool is found. (Required)
tags map The tags associated with the elastic pool.

Outputs

Attribute Description
id The ID of the elastic pool.