18 lines
380 B
Terraform
18 lines
380 B
Terraform
terraform {
|
|
required_version = ">= 1.6.0"
|
|
|
|
required_providers {
|
|
hcloud = {
|
|
source = "hetznercloud/hcloud"
|
|
version = "~> 1.54" # hcloud_zone / hcloud_zone_rrset (DNS) require >= 1.54.0
|
|
}
|
|
local = {
|
|
source = "hashicorp/local"
|
|
version = "~> 2.5"
|
|
}
|
|
}
|
|
}
|
|
|
|
# Reads the token from the HCLOUD_TOKEN environment variable.
|
|
provider "hcloud" {}
|