Fist attempt to factor microOS install

This commit is contained in:
Marco Nenciarini
2022-02-19 13:38:24 +01:00
parent 2a47ad6b89
commit 0090c1a6f1
13 changed files with 315 additions and 182 deletions

16
modules/host/versions.tf Normal file
View File

@@ -0,0 +1,16 @@
terraform {
required_providers {
hcloud = {
source = "hetznercloud/hcloud"
version = ">= 1.0.0, < 2.0.0"
}
local = {
source = "hashicorp/local"
version = ">= 2.0.0, < 3.0.0"
}
remote = {
source = "tenstad/remote"
version = "~> 0.0.23"
}
}
}