home-cloud/provider_hcloud.tf

9 lines
202 B
Terraform
Raw Normal View History

2019-01-30 19:49:47 +01:00
# Set the variable value in *.tfvars file
# or using -var="hcloud_token=..." CLI option
variable "hcloud_token" {}
# Configure the Hetzner Cloud Provider
2020-04-04 23:23:13 +02:00
provider hcloud {
token = var.hcloud_token
2019-01-30 19:49:47 +01:00
}