27 lines
536 B
HCL
27 lines
536 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
|
|
name_prefix = var.name_prefix
|
|
organization_id = var.organization_id
|
|
}
|