Skip to content

Commit 01cf254

Browse files
committed
fix typo
1 parent 2781717 commit 01cf254

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

resources/exclusions.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
package resources
22

33
// As of 4/6/16, these AWS regions do not support the NAT Gateway service.
4-
const REGIONS_WITHOUT_NAT_GATEWAY_SUPPORT = []string{
4+
var REGIONS_WITHOUT_NAT_GATEWAY_SUPPORT = []string{
55
"eu-central-1",
66
"ap-northeast-2",
77
"sa-east-1",
88
}
99

1010
// As of 6/9/16, these AWS regions do not support t2.nano instances
11-
const REGIONS_WITHOUT_T2_NANO = []string{
11+
var REGIONS_WITHOUT_T2_NANO = []string{
1212
"ap-southeast-2",
1313
}
1414

15-
const REGIONS_WITHOUT_ECS_SUPPORT = []string{
15+
var REGIONS_WITHOUT_ECS_SUPPORT = []string{
1616
"ap-northeast-2",
1717
"sa-east-1",
1818
}

0 commit comments

Comments
 (0)