terraform-provider-stackitp.../docs/data-sources/sqlserverflexbeta_database.md
Marcel S. Henselin 318b58339f
Some checks failed
CI Workflow / Check GoReleaser config (pull_request) Successful in 4s
CI Workflow / CI (pull_request) Failing after 13m53s
CI Workflow / Code coverage report (pull_request) Has been skipped
CI Workflow / Test readiness for publishing provider (pull_request) Successful in 16m47s
feat: add sqlserver beta resources (instance, database)
2026-02-04 21:18:43 +01:00

1.2 KiB

page_title subcategory description
stackitprivatepreview_sqlserverflexbeta_database Data Source - stackitprivatepreview

stackitprivatepreview_sqlserverflexbeta_database (Data Source)

Example Usage

data "stackitprivatepreview_sqlserverflexbeta_database" "example" {
  project_id    = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
  instance_id   = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
  database_name = "dbname"
}

Schema

Required

  • database_name (String) The name of the database.
  • instance_id (String) The ID of the instance.
  • project_id (String) The STACKIT project ID.

Optional

  • 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.
  • name (String) The name of the database.
  • owner (String) The owner of the database.