Initial commit for template

This commit is contained in:
Justine Pelletreau
2026-02-23 18:37:37 +01:00
commit 2e8173bb79
6 changed files with 724 additions and 0 deletions

11
variables.tf Normal file
View File

@ -0,0 +1,11 @@
variable "mandatory_var" {
description = "This variable has no default and is mandatory"
type = string
}
variable "optional_var" {
description = "This variable is optional since it has a default value"
type = string
default = "peperonipizza"
}