terraform-provider-stackitp.../docs/resources/sqlserverflexbeta_database.md
Marcel S. Henselin 7d4cbb6b08
All checks were successful
Publish / Check GoReleaser config (push) Successful in 5s
Publish / Publish provider (push) Successful in 16m14s
feat: initial copy of v0.1.0
2026-03-13 09:03:49 +01:00

1.7 KiB

page_title subcategory description
stackitprivatepreview_sqlserverflexbeta_database Resource - stackitprivatepreview

stackitprivatepreview_sqlserverflexbeta_database (Resource)

Example Usage

resource "stackitprivatepreview_sqlserverflexalpha_user" "example" {
  project_id  = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
  instance_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
  username    = "username"
  roles       = ["role"]
}

# Only use the import statement, if you want to import an existing sqlserverflex user
import {
  to = stackitprivatepreview_sqlserverflexalpha_user.import-example
  id = "${var.project_id},${var.region},${var.sql_instance_id},${var.sql_user_id}"
}

Schema

Required

  • name (String) The name of the database.
  • owner (String) The owner of the database.

Optional

  • collation (String) The collation of the database. This database collation should match the collation_name of one of the collations given by the Get database collation list endpoint.
  • compatibility (Number) CompatibilityLevel of the Database.
  • database_name (String) The name of the database.
  • instance_id (String) The ID of the instance.
  • project_id (String) The STACKIT project ID.
  • region (String) The region which should be addressed

Read-Only

  • collation_name (String) The collation of the database. This database collation should match the collation_name of one of the collations given by the Get database collation list endpoint.
  • compatibility_level (Number) CompatibilityLevel of the Database.
  • id (Number) The id of the database.