We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2781717 commit 01cf254Copy full SHA for 01cf254
resources/exclusions.go
@@ -1,18 +1,18 @@
1
package resources
2
3
// As of 4/6/16, these AWS regions do not support the NAT Gateway service.
4
-const REGIONS_WITHOUT_NAT_GATEWAY_SUPPORT = []string{
+var REGIONS_WITHOUT_NAT_GATEWAY_SUPPORT = []string{
5
"eu-central-1",
6
"ap-northeast-2",
7
"sa-east-1",
8
}
9
10
// As of 6/9/16, these AWS regions do not support t2.nano instances
11
-const REGIONS_WITHOUT_T2_NANO = []string{
+var REGIONS_WITHOUT_T2_NANO = []string{
12
"ap-southeast-2",
13
14
15
-const REGIONS_WITHOUT_ECS_SUPPORT = []string{
+var REGIONS_WITHOUT_ECS_SUPPORT = []string{
16
17
18
0 commit comments