mirror of
https://github.com/apricote/home-cloud.git
synced 2026-01-13 21:11:02 +00:00
deps: upgrade to terraform 0.13
This commit is contained in:
parent
36b4fe6a6e
commit
6eba145ef4
4 changed files with 44 additions and 7 deletions
|
|
@ -1,11 +1,26 @@
|
|||
|
||||
terraform {
|
||||
required_version = "~> 0.12.0"
|
||||
required_version = ">= 0.13"
|
||||
|
||||
required_providers {
|
||||
hcloud = "~> 1.2"
|
||||
tls = "~> 2.1"
|
||||
template = "~> 2.1"
|
||||
random = "~> 2.2"
|
||||
hcloud = {
|
||||
source = "hetznercloud/hcloud"
|
||||
version = "~> 1.30"
|
||||
}
|
||||
tls = {
|
||||
source = "hashicorp/tls"
|
||||
version = "~> 2.1"
|
||||
}
|
||||
template = {
|
||||
source = "hashicorp/template"
|
||||
version = "~> 2.1"
|
||||
}
|
||||
random = {
|
||||
source = "hashicorp/random"
|
||||
version = "~> 2.2"
|
||||
}
|
||||
null = {
|
||||
source = "hashicorp/null"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue