Add missing Terraform provider (local)

This commit is contained in:
Dennis Hoppe 2022-01-13 12:36:10 +01:00
parent 5e9ddc16ff
commit db3876bca4
No known key found for this signature in database
GPG Key ID: F0DCF4EC6237CDD2
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,5 @@
provider "hcloud" {
token = var.hcloud_token
}
provider "local" {}

View File

@ -4,5 +4,9 @@ terraform {
source = "hetznercloud/hcloud"
version = ">= 1.0.0, < 2.0.0"
}
local = {
source = "hashicorp/local"
version = ">= 2.0.0, < 3.0.0"
}
}
}