terraform-provider-stackitp.../docs/data-sources/sqlserverflexalpha_instance.md
Marcel S. Henselin 68e4c137f1
Some checks failed
Publish / Check GoReleaser config (push) Successful in 5s
Publish / Publish provider (push) Failing after 4m1s
fix: fix build pipeline error (#38)
## Description

<!-- **Please link some issue here describing what you are trying to achieve.**

In case there is no issue present for your PR, please consider creating one.
At least please give us some description what you are trying to achieve and why your change is needed. -->

relates to #1234

## Checklist

- [ ] Issue was linked above
- [ ] Code format was applied: `make fmt`
- [ ] Examples were added / adjusted (see `examples/` directory)
- [x] Docs are up-to-date: `make generate-docs` (will be checked by CI)
- [ ] Unit tests got implemented or updated
- [ ] Acceptance tests got implemented or updated (see e.g. [here](f5f99d1709/stackit/internal/services/dns/dns_acc_test.go))
- [x] Unit tests are passing: `make test` (will be checked by CI)
- [x] No linter issues: `make lint` (will be checked by CI)

Reviewed-on: #38
Co-authored-by: Marcel S. Henselin <marcel.henselin@stackit.cloud>
Co-committed-by: Marcel S. Henselin <marcel.henselin@stackit.cloud>
2026-02-10 09:32:06 +00:00

2.7 KiB

page_title subcategory description
stackitprivatepreview_sqlserverflexalpha_instance Data Source - stackitprivatepreview

stackitprivatepreview_sqlserverflexalpha_instance (Data Source)

Example Usage

data "stackitprivatepreview_sqlserverflexalpha_instance" "example" {
  project_id  = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
  instance_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}

Schema

Required

  • 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

  • backup_schedule (String) The schedule for on what time and how often the database backup will be created. The schedule is written as a cron schedule.
  • edition (String) Edition of the MSSQL server instance
  • encryption (Attributes) this defines which key to use for storage encryption (see below for nested schema)
  • flavor_id (String) The id of the instance flavor.
  • id (String) Terraform's internal resource ID. It is structured as "project_id,region,instance_id".
  • is_deletable (Boolean) Whether the instance can be deleted or not.
  • name (String) The name of the instance.
  • network (Attributes) The access configuration of the instance (see below for nested schema)
  • replicas (Number) How many replicas the instance should have.
  • retention_days (Number) The days for how long the backup files should be stored before cleaned up. 30 to 365
  • status (String)
  • storage (Attributes) The object containing information about the storage size and class. (see below for nested schema)
  • tf_original_api_id (String) The ID of the instance.
  • version (String) The sqlserver version used for the instance.

Nested Schema for encryption

Read-Only:

  • kek_key_id (String) The key identifier
  • kek_key_ring_id (String) The keyring identifier
  • kek_key_version (String) The key version
  • service_account (String)

Nested Schema for network

Read-Only:

  • access_scope (String) The network access scope of the instance

⚠️ Note: This feature is in private preview. Supplying this object is only permitted for enabled accounts. If your account does not have access, the request will be rejected.

  • acl (List of String) List of IPV4 cidr.
  • instance_address (String)
  • router_address (String)

Nested Schema for storage

Read-Only:

  • class (String) The storage class for the storage.
  • size (Number) The storage size in Gigabytes.