-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathvariables.tf
35 lines (29 loc) · 813 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
variable "puerto_servidor" {
description = "Puerto para las instancias EC2"
type = number
default = 8080
validation {
condition = var.puerto_servidor > 0 && var.puerto_servidor <= 65536
error_message = "El valor del puerto debe estar comprendido entre 1 y 65536."
}
}
variable "ubuntu_ami" {
description = "AMI por region"
type = map(string)
default = {
eu-west-1 = "ami-0aef57767f5404a3c" # Ubuntu en Dublin
us-west-2 = "ami-005383956f2e5fb96" # Ubuntu en London
}
}
variable "servidores" {
description = "Mapa de servidores con su correspondiente AZ"
type = map(object({
nombre = string,
az = string
})
)
default = {
"ser-1" = { nombre = "servidor-1", az = "a" },
"ser-2" = { nombre = "servidor-2", az = "b" },
}
}