init: copied modules from lawndale-infra

This commit is contained in:
2022-05-26 00:40:29 +02:00
commit 414feb48ee
39 changed files with 1435 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
variable "id" {
type = number
description = "The ID for the VM that will be transposed into an IP address"
}
variable "name" {
type = string
description = "The domain name for the vm"
}
variable "interface" {
type = string
description = "Which interface should be used. Can be either nat or internal"
}
variable "ttl" {
type = number
description = "TTL value for the new records"
default = 300
}