terraform-iaas-api-basic-ha.../00-provider.tf
Mauritz Uphoff e4c810dea7
Some checks failed
CI / Terraform Format & Validate (push) Failing after 43s
CI / TruffleHog Secrets Scan (push) Successful in 1m4s
clean up repo
2025-06-12 12:26:59 +02:00

24 lines
607 B
HCL

/*
Copyright 2023 Schwarz IT KG <markus.brunsch@mail.schwarz>
Copyright 2024-2025 STACKIT GmbH & Co. KG <markus.brunsch@stackit.cloud>
Use of this source code is governed by an MIT-style
license that can be found in the LICENSE file or at
https://opensource.org/licenses/MIT.
*/
# Define required providers
terraform {
required_version = ">= 0.14.0"
required_providers {
stackit = {
source = "stackitcloud/stackit"
version = "0.55.0"
}
}
}
provider "stackit" {
default_region = var.stackit_region
service_account_key_path = var.stackit_service_account_key_path
}