-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathamis.tf
43 lines (42 loc) · 1000 Bytes
/
amis.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
variable "VAULT_AMIS" {
type = map(map(string))
default = {
12.0 = {
us-east-1 = "ami-03f0247c921dfbd80"
us-west-2 = "ami-0e219dce6006c1f03"
eu-central-1 = "ami-04ac45703e289ef12"
},
11.7 = {
us-east-1 = "ami-0857d4653bc70ed8a"
us-west-2 = "ami-0b9a1112a689a957f"
eu-central-1 = "ami-0cfbecbcf14098f23"
},
11.6 = {
eu-central-1 = "ami-0be1b12c31b86f3d7"
},
11.5 = {
eu-central-1 = "ami-0e347ea01ed304fb4"
}
}
}
variable "COMPONENTS_AMIS" {
type = map(map(string))
default = {
12.0 = {
us-east-1 = "ami-0f8d6e646e5e09857"
us-west-2 = "ami-094c397fb6b8ab886"
eu-central-1 = "ami-0c4f58cd3d6de3548"
},
11.7 = {
us-east-1 = "ami-03a07c6ea32d6bc94"
us-west-2 = "ami-0c974ea5eec079486"
eu-central-1 = "ami-048060619542fab34"
},
11.6 = {
eu-central-1 = "ami-0be1b12c31b86f3d7"
},
11.5 = {
eu-central-1 = "ami-0e347ea01ed304fb4"
}
}
}