terraform-provider-stackitp.../docs/index.md
Marcel S. Henselin 99f2853ae5
Feat: alpha sqlserver user (#12)
* fix: remove unused attribute types and functions from backup models

* fix: update API client references to use sqlserverflexalpha package

* fix: update package references to use sqlserverflexalpha and modify user data source model

* fix: add sqlserverflexalpha user data source to provider

* fix: add sqlserverflexalpha user resource and update related functionality

* chore: add stackit_sqlserverflexalpha_user resource and instance_id variable

* fix: refactor sqlserverflexalpha user resource and enhance schema with status and default_database

* chore: remove not needed service files

* chore: cleanup import in utils

* fix: provider name change

* fix: clone missing doc files

* fix: docs adjustments

* fix: docs CI scripts

* fix: docs naming

* fix: remove guides from docs

* fix: adjust examples

* fix: remove obsolete doc templates

* fix: docs adjustments

* fix: add missing doc file

* fix: temp rename file

---------

Co-authored-by: Andre Harms <andre.harms@stackit.cloud>
Co-authored-by: Marcel S. Henselin <marcel.henselin@stackit.cloud>
2025-12-19 15:15:42 +01:00

4.8 KiB

STACKITPRIVATEPREVIEW Terraform Provider

Example Usage

# Copyright (c) STACKIT

provider "stackitprivatepreview" {
  default_region = "eu01"
}

# Authentication

# Token flow (scheduled for deprecation and will be removed on December 17, 2025)
provider "stackitprivatepreview" {
  default_region        = "eu01"
  service_account_token = var.service_account_token
}

# Key flow
provider "stackitprivatepreview" {
  default_region      = "eu01"
  service_account_key = var.service_account_key
  private_key         = var.private_key
}

# Key flow (using path)
provider "stackitprivatepreview" {
  default_region           = "eu01"
  service_account_key_path = var.service_account_key_path
  private_key_path         = var.private_key_path
}

Schema

Optional

  • authorization_custom_endpoint (String) Custom endpoint for the Membership service
  • cdn_custom_endpoint (String) Custom endpoint for the CDN service
  • credentials_path (String) Path of JSON from where the credentials are read. Takes precedence over the env var STACKIT_CREDENTIALS_PATH. Default value is ~/.stackit/credentials.json.
  • default_region (String) Region will be used as the default location for regional services. Not all services require a region, some are global
  • dns_custom_endpoint (String) Custom endpoint for the DNS service
  • enable_beta_resources (Boolean) Enable beta resources. Default is false.
  • experiments (List of String) Enables experiments. These are unstable features without official support. More information can be found in the README. Available Experiments: iam, routing-tables, network
  • git_custom_endpoint (String) Custom endpoint for the Git service
  • iaas_custom_endpoint (String) Custom endpoint for the IaaS service
  • kms_custom_endpoint (String) Custom endpoint for the KMS service
  • loadbalancer_custom_endpoint (String) Custom endpoint for the Load Balancer service
  • logme_custom_endpoint (String) Custom endpoint for the LogMe service
  • mariadb_custom_endpoint (String) Custom endpoint for the MariaDB service
  • modelserving_custom_endpoint (String) Custom endpoint for the AI Model Serving service
  • mongodbflex_custom_endpoint (String) Custom endpoint for the MongoDB Flex service
  • objectstorage_custom_endpoint (String) Custom endpoint for the Object Storage service
  • observability_custom_endpoint (String) Custom endpoint for the Observability service
  • opensearch_custom_endpoint (String) Custom endpoint for the OpenSearch service
  • postgresflex_custom_endpoint (String) Custom endpoint for the PostgresFlex service
  • private_key (String) Private RSA key used for authentication, relevant for the key flow. It takes precedence over the private key that is included in the service account key.
  • private_key_path (String) Path for the private RSA key used for authentication, relevant for the key flow. It takes precedence over the private key that is included in the service account key.
  • rabbitmq_custom_endpoint (String) Custom endpoint for the RabbitMQ service
  • redis_custom_endpoint (String) Custom endpoint for the Redis service
  • region (String, Deprecated) Region will be used as the default location for regional services. Not all services require a region, some are global
  • resourcemanager_custom_endpoint (String) Custom endpoint for the Resource Manager service
  • scf_custom_endpoint (String) Custom endpoint for the Cloud Foundry (SCF) service
  • secretsmanager_custom_endpoint (String) Custom endpoint for the Secrets Manager service
  • server_backup_custom_endpoint (String) Custom endpoint for the Server Backup service
  • server_update_custom_endpoint (String) Custom endpoint for the Server Update service
  • service_account_custom_endpoint (String) Custom endpoint for the Service Account service
  • service_account_email (String, Deprecated) Service account email. It can also be set using the environment variable STACKIT_SERVICE_ACCOUNT_EMAIL. It is required if you want to use the resource manager project resource.
  • service_account_key (String) Service account key used for authentication. If set, the key flow will be used to authenticate all operations.
  • service_account_key_path (String) Path for the service account key used for authentication. If set, the key flow will be used to authenticate all operations.
  • service_account_token (String, Deprecated) Token used for authentication. If set, the token flow will be used to authenticate all operations.
  • service_enablement_custom_endpoint (String) Custom endpoint for the Service Enablement API
  • ske_custom_endpoint (String) Custom endpoint for the Kubernetes Engine (SKE) service
  • sqlserverflex_custom_endpoint (String) Custom endpoint for the SQL Server Flex service
  • token_custom_endpoint (String) Custom endpoint for the token API, which is used to request access tokens when using the key flow