terraform-provider-stackitp.../docs/resources/postgresflexalpha_instance.md
Marcel S. Henselin 9f41c4da7f
Some checks failed
Publish / Check GoReleaser config (push) Successful in 4s
Release / goreleaser (push) Failing after 29s
Publish / Publish provider (push) Failing after 4m24s
feat: auto generated files and new structure (#4)
## 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: #4
Reviewed-by: Andre_Harms <andre.harms@stackit.cloud>
Co-authored-by: Marcel S. Henselin <marcel.henselin@stackit.cloud>
Co-committed-by: Marcel S. Henselin <marcel.henselin@stackit.cloud>
2026-01-29 14:10:25 +00:00

3.3 KiB

page_title subcategory description
stackitprivatepreview_postgresflexalpha_instance Resource - stackitprivatepreview

stackitprivatepreview_postgresflexalpha_instance (Resource)

Example Usage

resource "stackitprivatepreview_postgresflexalpha_instance" "example" {
  project_id      = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
  name            = "example-instance"
  acl             = ["XXX.XXX.XXX.X/XX", "XX.XXX.XX.X/XX"]
  backup_schedule = "00 00 * * *"
  flavor = {
    cpu = 2
    ram = 4
  }
  replicas = 3
  storage = {
    class = "class"
    size  = 5
  }
  version = 14
}

# Only use the import statement, if you want to import an existing postgresflex instance
import {
  to = stackitprivatepreview_postgresflexalpha_instance.import-example
  id = "${var.project_id},${var.region},${var.postgres_instance_id}"
}

Schema

Required

  • 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.
  • flavor_id (String) The id of the instance flavor.
  • 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) How long backups are retained. The value can only be between 32 and 365 days.
  • storage (Attributes) The object containing information about the storage size and class. (see below for nested schema)
  • version (String) The Postgres version used for the instance. See Versions Endpoint for supported version parameters.

Optional

  • encryption (Attributes) The configuration for instance's volume and backup storage encryption.

⚠️ 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. (see below for nested schema)

  • 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

  • id (String) The ID of the instance.
  • is_deletable (Boolean) Whether the instance can be deleted or not.
  • status (String) The current status of the instance.

Nested Schema for network

Required:

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

Optional:

  • access_scope (String) The access scope of the instance. It defines if the instance is public or airgapped.
  • instance_address (String)
  • router_address (String)

Nested Schema for storage

Required:

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

Nested Schema for encryption

Required:

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