feat: add servers module
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
parent
1fffa79b9d
commit
b9f3259f6a
7 changed files with 151 additions and 0 deletions
22
modules/server/variables.tf
Normal file
22
modules/server/variables.tf
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
variable "hostname" {
|
||||
type = string
|
||||
description = "The hostname for the server"
|
||||
}
|
||||
|
||||
variable "location" {
|
||||
type = string
|
||||
description = "The datacenter location for the server"
|
||||
default = "nbg1"
|
||||
}
|
||||
|
||||
variable "type" {
|
||||
type = string
|
||||
description = "The server type"
|
||||
default = "cax11"
|
||||
}
|
||||
|
||||
variable "dns_zone" {
|
||||
type = string
|
||||
description = "The Cloudflare DNS zone"
|
||||
default = "escapeangle.com"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue