terraform-hcloud-kube-hetzner/versions.tf

21 lines
393 B
Terraform
Raw Permalink Normal View History

2021-07-30 10:12:37 +02:00
terraform {
required_providers {
2022-01-13 13:32:17 +01:00
github = {
source = "integrations/github"
2024-02-16 20:03:35 +01:00
version = "< 7.0.0"
2022-01-13 13:32:17 +01:00
}
2021-07-30 10:12:37 +02:00
hcloud = {
source = "hetznercloud/hcloud"
version = ">= 1.0.0, < 2.0.0"
2021-07-30 10:12:37 +02:00
}
2022-01-13 12:36:10 +01:00
local = {
source = "hashicorp/local"
version = ">= 2.0.0, < 3.0.0"
}
remote = {
source = "tenstad/remote"
2022-10-26 17:16:22 +02:00
version = "~> 0.1.23"
}
2021-07-30 10:12:37 +02:00
}
}