home-cloud/provider_hcloud.tf
2020-05-04 00:43:29 +02:00

10 lines
227 B
HCL
Executable file

# Set the variable value in *.tfvars file
# or using -var="hcloud_token=..." CLI option
variable "hcloud_token" {}
# Configure the Hetzner Cloud Provider
provider hcloud {
version = "~> 1.16.0"
token = var.hcloud_token
}