about summary refs log tree commit diff
path: root/nixos/modules/virtualisation/ec2-amis.nix
blob: ffd1cbec3ce3037cfa01284b2550a2a4d6618d18 (plain) (blame)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
let self = {
  "14.04".ap-northeast-1.hvm-ebs = "ami-71c6f470";
  "14.04".ap-northeast-1.pv-ebs = "ami-4dcbf84c";
  "14.04".ap-northeast-1.pv-s3 = "ami-8fc4f68e";
  "14.04".ap-southeast-1.hvm-ebs = "ami-da280888";
  "14.04".ap-southeast-1.pv-ebs = "ami-7a9dbc28";
  "14.04".ap-southeast-1.pv-s3 = "ami-c4290996";
  "14.04".ap-southeast-2.hvm-ebs = "ami-ab523e91";
  "14.04".ap-southeast-2.pv-ebs = "ami-6769055d";
  "14.04".ap-southeast-2.pv-s3 = "ami-15533f2f";
  "14.04".eu-central-1.hvm-ebs = "ami-ba0234a7";
  "14.04".eu-west-1.hvm-ebs = "ami-96cb63e1";
  "14.04".eu-west-1.pv-ebs = "ami-b48c25c3";
  "14.04".eu-west-1.pv-s3 = "ami-06cd6571";
  "14.04".sa-east-1.hvm-ebs = "ami-01b90e1c";
  "14.04".sa-east-1.pv-ebs = "ami-69e35474";
  "14.04".sa-east-1.pv-s3 = "ami-61b90e7c";
  "14.04".us-east-1.hvm-ebs = "ami-58ba3a30";
  "14.04".us-east-1.pv-ebs = "ami-9e0583f6";
  "14.04".us-east-1.pv-s3 = "ami-9cbe3ef4";
  "14.04".us-west-1.hvm-ebs = "ami-0bc3d74e";
  "14.04".us-west-1.pv-ebs = "ami-8b1703ce";
  "14.04".us-west-1.pv-s3 = "ami-27ccd862";
  "14.04".us-west-2.hvm-ebs = "ami-3bf1bf0b";
  "14.04".us-west-2.pv-ebs = "ami-259bd515";
  "14.04".us-west-2.pv-s3 = "ami-07094037";

  "14.12".ap-northeast-1.hvm-ebs = "ami-24435f25";
  "14.12".ap-northeast-1.pv-ebs = "ami-b0425eb1";
  "14.12".ap-northeast-1.pv-s3 = "ami-fed3c6ff";
  "14.12".ap-southeast-1.hvm-ebs = "ami-6c765d3e";
  "14.12".ap-southeast-1.pv-ebs = "ami-6a765d38";
  "14.12".ap-southeast-1.pv-s3 = "ami-d1bf9183";
  "14.12".ap-southeast-2.hvm-ebs = "ami-af86f395";
  "14.12".ap-southeast-2.pv-ebs = "ami-b386f389";
  "14.12".ap-southeast-2.pv-s3 = "ami-69c5ae53";
  "14.12".eu-central-1.hvm-ebs = "ami-4a497a57";
  "14.12".eu-central-1.pv-ebs = "ami-4c497a51";
  "14.12".eu-central-1.pv-s3 = "ami-60f2c27d";
  "14.12".eu-west-1.hvm-ebs = "ami-d126a5a6";
  "14.12".eu-west-1.pv-ebs = "ami-0126a576";
  "14.12".eu-west-1.pv-s3 = "ami-deda5fa9";
  "14.12".sa-east-1.hvm-ebs = "ami-2d239e30";
  "14.12".sa-east-1.pv-ebs = "ami-35239e28";
  "14.12".sa-east-1.pv-s3 = "ami-81e3519c";
  "14.12".us-east-1.hvm-ebs = "ami-0c463a64";
  "14.12".us-east-1.pv-ebs = "ami-ac473bc4";
  "14.12".us-east-1.pv-s3 = "ami-00e18a68";
  "14.12".us-west-1.hvm-ebs = "ami-ca534a8f";
  "14.12".us-west-1.pv-ebs = "ami-3e534a7b";
  "14.12".us-west-1.pv-s3 = "ami-2905196c";
  "14.12".us-west-2.hvm-ebs = "ami-fb9dc3cb";
  "14.12".us-west-2.pv-ebs = "ami-899dc3b9";
  "14.12".us-west-2.pv-s3 = "ami-cb7f2dfb";

  "15.09".ap-northeast-1.hvm-ebs = "ami-58cac236";
  "15.09".ap-northeast-1.hvm-s3 = "ami-39c8c057";
  "15.09".ap-northeast-1.pv-ebs = "ami-5ac9c134";
  "15.09".ap-northeast-1.pv-s3 = "ami-03cec66d";
  "15.09".ap-southeast-1.hvm-ebs = "ami-2fc2094c";
  "15.09".ap-southeast-1.hvm-s3 = "ami-9ec308fd";
  "15.09".ap-southeast-1.pv-ebs = "ami-95c00bf6";
  "15.09".ap-southeast-1.pv-s3 = "ami-bfc00bdc";
  "15.09".ap-southeast-2.hvm-ebs = "ami-996c4cfa";
  "15.09".ap-southeast-2.hvm-s3 = "ami-3f6e4e5c";
  "15.09".ap-southeast-2.pv-ebs = "ami-066d4d65";
  "15.09".ap-southeast-2.pv-s3 = "ami-cc6e4eaf";
  "15.09".eu-central-1.hvm-ebs = "ami-3f8c6b50";
  "15.09".eu-central-1.hvm-s3 = "ami-5b836434";
  "15.09".eu-central-1.pv-ebs = "ami-118c6b7e";
  "15.09".eu-central-1.pv-s3 = "ami-2c977043";
  "15.09".eu-west-1.hvm-ebs = "ami-9cf04aef";
  "15.09".eu-west-1.hvm-s3 = "ami-2bea5058";
  "15.09".eu-west-1.pv-ebs = "ami-c9e852ba";
  "15.09".eu-west-1.pv-s3 = "ami-c6f64cb5";
  "15.09".sa-east-1.hvm-ebs = "ami-6e52df02";
  "15.09".sa-east-1.hvm-s3 = "ami-1852df74";
  "15.09".sa-east-1.pv-ebs = "ami-4368e52f";
  "15.09".sa-east-1.pv-s3 = "ami-f15ad79d";
  "15.09".us-east-1.hvm-ebs = "ami-84a6a0ee";
  "15.09".us-east-1.hvm-s3 = "ami-06a7a16c";
  "15.09".us-east-1.pv-ebs = "ami-a4a1a7ce";
  "15.09".us-east-1.pv-s3 = "ami-5ba8ae31";
  "15.09".us-west-1.hvm-ebs = "ami-22c8bb42";
  "15.09".us-west-1.hvm-s3 = "ami-a2ccbfc2";
  "15.09".us-west-1.pv-ebs = "ami-10cebd70";
  "15.09".us-west-1.pv-s3 = "ami-fa30429a";
  "15.09".us-west-2.hvm-ebs = "ami-ce57b9ae";
  "15.09".us-west-2.hvm-s3 = "ami-2956b849";
  "15.09".us-west-2.pv-ebs = "ami-005fb160";
  "15.09".us-west-2.pv-s3 = "ami-cd55bbad";

  "16.03".ap-northeast-1.hvm-ebs = "ami-40619d21";
  "16.03".ap-northeast-1.hvm-s3 = "ami-ce629eaf";
  "16.03".ap-northeast-1.pv-ebs = "ami-ef639f8e";
  "16.03".ap-northeast-1.pv-s3 = "ami-a1609cc0";
  "16.03".ap-northeast-2.hvm-ebs = "ami-deca00b0";
  "16.03".ap-northeast-2.hvm-s3 = "ami-a3b77dcd";
  "16.03".ap-northeast-2.pv-ebs = "ami-7bcb0115";
  "16.03".ap-northeast-2.pv-s3 = "ami-a2b77dcc";
  "16.03".ap-south-1.hvm-ebs = "ami-0dff9562";
  "16.03".ap-south-1.hvm-s3 = "ami-13f69c7c";
  "16.03".ap-south-1.pv-ebs = "ami-0ef39961";
  "16.03".ap-south-1.pv-s3 = "ami-e0c8a28f";
  "16.03".ap-southeast-1.hvm-ebs = "ami-5e964a3d";
  "16.03".ap-southeast-1.hvm-s3 = "ami-4d964a2e";
  "16.03".ap-southeast-1.pv-ebs = "ami-ec9b478f";
  "16.03".ap-southeast-1.pv-s3 = "ami-999b47fa";
  "16.03".ap-southeast-2.hvm-ebs = "ami-9f7359fc";
  "16.03".ap-southeast-2.hvm-s3 = "ami-987359fb";
  "16.03".ap-southeast-2.pv-ebs = "ami-a2705ac1";
  "16.03".ap-southeast-2.pv-s3 = "ami-a3705ac0";
  "16.03".eu-central-1.hvm-ebs = "ami-17a45178";
  "16.03".eu-central-1.hvm-s3 = "ami-f9a55096";
  "16.03".eu-central-1.pv-ebs = "ami-c8a550a7";
  "16.03".eu-central-1.pv-s3 = "ami-6ea45101";
  "16.03".eu-west-1.hvm-ebs = "ami-b5b3d5c6";
  "16.03".eu-west-1.hvm-s3 = "ami-c986e0ba";
  "16.03".eu-west-1.pv-ebs = "ami-b083e5c3";
  "16.03".eu-west-1.pv-s3 = "ami-3c83e54f";
  "16.03".sa-east-1.hvm-ebs = "ami-f6eb7f9a";
  "16.03".sa-east-1.hvm-s3 = "ami-93e773ff";
  "16.03".sa-east-1.pv-ebs = "ami-cbb82ca7";
  "16.03".sa-east-1.pv-s3 = "ami-abb82cc7";
  "16.03".us-east-1.hvm-ebs = "ami-c123a3d6";
  "16.03".us-east-1.hvm-s3 = "ami-bc25a5ab";
  "16.03".us-east-1.pv-ebs = "ami-bd25a5aa";
  "16.03".us-east-1.pv-s3 = "ami-a325a5b4";
  "16.03".us-west-1.hvm-ebs = "ami-748bcd14";
  "16.03".us-west-1.hvm-s3 = "ami-a68dcbc6";
  "16.03".us-west-1.pv-ebs = "ami-048acc64";
  "16.03".us-west-1.pv-s3 = "ami-208dcb40";
  "16.03".us-west-2.hvm-ebs = "ami-8263a0e2";
  "16.03".us-west-2.hvm-s3 = "ami-925c9ff2";
  "16.03".us-west-2.pv-ebs = "ami-5e61a23e";
  "16.03".us-west-2.pv-s3 = "ami-734c8f13";

  # 16.09.666.3738950
  "16.09".ap-northeast-1.hvm-ebs = "ami-35578954";
  "16.09".ap-northeast-1.hvm-s3 = "ami-d6528cb7";
  "16.09".ap-northeast-1.pv-ebs = "ami-07548a66";
  "16.09".ap-northeast-1.pv-s3 = "ami-f1548a90";
  "16.09".ap-northeast-2.hvm-ebs = "ami-d48753ba";
  "16.09".ap-northeast-2.hvm-s3 = "ami-4c865222";
  "16.09".ap-northeast-2.pv-ebs = "ami-ca8551a4";
  "16.09".ap-northeast-2.pv-s3 = "ami-9c8551f2";
  "16.09".ap-south-1.hvm-ebs = "ami-922450fd";
  "16.09".ap-south-1.hvm-s3 = "ami-6d3a4e02";
  "16.09".ap-south-1.pv-ebs = "ami-4d394d22";
  "16.09".ap-south-1.pv-s3 = "ami-17384c78";
  "16.09".ap-southeast-1.hvm-ebs = "ami-f824809b";
  "16.09".ap-southeast-1.hvm-s3 = "ami-f924809a";
  "16.09".ap-southeast-1.pv-ebs = "ami-af2480cc";
  "16.09".ap-southeast-1.pv-s3 = "ami-5826823b";
  "16.09".ap-southeast-2.hvm-ebs = "ami-40fecd23";
  "16.09".ap-southeast-2.hvm-s3 = "ami-48fecd2b";
  "16.09".ap-southeast-2.pv-ebs = "ami-dffecdbc";
  "16.09".ap-southeast-2.pv-s3 = "ami-e0fccf83";
  "16.09".eu-central-1.hvm-ebs = "ami-1d8b7472";
  "16.09".eu-central-1.hvm-s3 = "ami-1c8b7473";
  "16.09".eu-central-1.pv-ebs = "ami-8c8d72e3";
  "16.09".eu-central-1.pv-s3 = "ami-3488775b";
  "16.09".eu-west-1.hvm-ebs = "ami-15662766";
  "16.09".eu-west-1.hvm-s3 = "ami-476b2a34";
  "16.09".eu-west-1.pv-ebs = "ami-876928f4";
  "16.09".eu-west-1.pv-s3 = "ami-70682903";
  "16.09".sa-east-1.hvm-ebs = "ami-27bc2e4b";
  "16.09".sa-east-1.hvm-s3 = "ami-e4b92b88";
  "16.09".sa-east-1.pv-ebs = "ami-4dbe2c21";
  "16.09".sa-east-1.pv-s3 = "ami-77fc6e1b";
  "16.09".us-east-1.hvm-ebs = "ami-93347684";
  "16.09".us-east-1.hvm-s3 = "ami-5e347649";
  "16.09".us-east-1.pv-ebs = "ami-b0387aa7";
  "16.09".us-east-1.pv-s3 = "ami-51357746";
  "16.09".us-west-1.hvm-ebs = "ami-06337a66";
  "16.09".us-west-1.hvm-s3 = "ami-76307916";
  "16.09".us-west-1.pv-ebs = "ami-fd327b9d";
  "16.09".us-west-1.pv-s3 = "ami-cc347dac";
  "16.09".us-west-2.hvm-ebs = "ami-49fe2729";
  "16.09".us-west-2.hvm-s3 = "ami-93fc25f3";
  "16.09".us-west-2.pv-ebs = "ami-14fe2774";
  "16.09".us-west-2.pv-s3 = "ami-74f12814";

  latest = self."16.09";
}; in self