mirror of
https://github.com/apricote/home-cloud.git
synced 2026-01-13 13:01:03 +00:00
9 lines
224 B
Terraform
9 lines
224 B
Terraform
|
|
# Set the variable value in *.tfvars file
|
||
|
|
# or using -var="hetzner_dns_token=..." CLI option
|
||
|
|
variable "hetzner_dns_token" {}
|
||
|
|
|
||
|
|
# Configure the Hetzner DNS Provider
|
||
|
|
provider "hetznerdns" {
|
||
|
|
apitoken = var.hetzner_dns_token
|
||
|
|
}
|