landingzone/00-provider.tf
2025-11-06 09:03:44 +01:00

26 lines
504 B
HCL

terraform {
required_providers {
stackit = {
source = "stackitcloud/stackit"
version = ">=0.69.0"
}
}
}
# Authentication
# Key flow (using path)
provider "stackit" {
default_region = var.default_region
service_account_key_path = var.service_account_key_path
enable_beta_resources = true
}
module "project" {
source = "./project"
default_region = var.default_region
service_account_key_path = var.service_account_key_path
organization_id = var.organization_id
}