-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVariables.tf
48 lines (39 loc) · 995 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
36
37
38
39
40
41
42
43
44
45
46
47
48
variable "amis" {
type = map(any)
default = {
"Ubnt-us-east-1" = "ami-0261755bbcb8c4a84"
"Ubnt-us-east-2" = "ami-0430580de6244e02e"
}
}
variable "cdirs_acesso_remoto" {
type = list(any)
default = ["187.180.212.28/32", "200.181.118.98/32"]
}
variable "key_name" {
type = string
default = "KeyPar-072024"
}
variable "dynamic_scaling" {
description = "Enable/disable dynamic scaling of the auto scaling group."
type = bool
default = false
}
variable "dynamic_scaling_adjustment" {
description = "The adjustment in number of instances for dynamic scaling."
type = number
default = 1
}
variable "environment" {
description = "Name of the environment; will be prefixed to all resources."
type = string
default = "Projeto20"
}
variable "app_count" {
type = number
default = 2
}
variable "user_names" {
description = "Name of the User."
type = list(string)
default = ["XXX", "YYY", "ZZZ"]
}