terraform-provider-stackitp.../sample/providers.tf
Marcel S. Henselin 70db08f43f
Feat/mssql alpha instance (#7)
* chore: add missing resources

---------

Co-authored-by: Marcel S. Henselin <marcel.henselin@stackit.cloud>
2025-12-19 11:55:29 +01:00

26 lines
608 B
HCL

# Copyright (c) STACKIT
terraform {
required_providers {
stackit = {
source = "registry.terraform.io/stackitcloud/stackit"
#version = "~> 0.70"
}
stackitprivatepreview = {
source = "registry.terraform.io/stackitcloud/stackitprivatepreview"
version = "~> 0.1"
}
}
}
provider "stackit" {
default_region = "eu01"
enable_beta_resources = true
service_account_key_path = "./service_account.json"
}
provider "stackitprivatepreview" {
default_region = "eu01"
enable_beta_resources = true
service_account_key_path = "./service_account.json"
}