feat: Initial code
Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
parent
0e18170cdf
commit
fc59b4f9a5
18 changed files with 478 additions and 1 deletions
22
tofu/variables.tf
Normal file
22
tofu/variables.tf
Normal file
|
@ -0,0 +1,22 @@
|
|||
variable "domain" {
|
||||
description = "Name of the domain zone"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "hostname" {
|
||||
description = "Name of the server"
|
||||
type = string
|
||||
default = "galene"
|
||||
}
|
||||
|
||||
variable "openstack_image" {
|
||||
description = "Name of the OpenStack image"
|
||||
type = string
|
||||
default = "Debian 12"
|
||||
}
|
||||
|
||||
variable "openstack_flavor" {
|
||||
description = "Name of the OpenStack flavor"
|
||||
type = string
|
||||
default = "d2-2"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue