home-cloud/terraform_provider_test/provider_hcloud.tf

13 lines
264 B
Terraform
Raw Normal View History

2019-05-12 20:57:52 +02:00
# Set the variable value in *.tfvars file
# or using -var="hcloud_token=..." CLI option
variable "hcloud_token" {}
variable "hcloud_location" {}
# Configure the Hetzner Cloud Provider
provider "hcloud" {
version = "~> 1.7.0"
token = "${var.hcloud_token}"
}