home-cloud/provider_hcloud.tf

11 lines
225 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 {
2021-12-03 22:02:57 +01:00
version = "~> 1.30"
2019-01-30 19:49:47 +01:00
2020-04-04 23:23:13 +02:00
token = var.hcloud_token
2019-01-30 19:49:47 +01:00
}