Skip to content

Commit

Permalink
add Jakarta region & AZs to AWS list (#1167)
Browse files Browse the repository at this point in the history
* add Jakarta region & AZs to AWS list

* Retrigger CI

Co-authored-by: Vivek Singh <vsingh.ggits.2010@gmail.com>
  • Loading branch information
KastenMike and viveksinghggits committed Dec 31, 2021
1 parent f459022 commit 983ddca
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pkg/blockstorage/awsebs/awsebs.go
Original file line number Diff line number Diff line change
Expand Up @@ -731,6 +731,12 @@ func staticRegionToZones(region string) ([]string, error) {
"ap-southeast-2b",
"ap-southeast-2c",
}, nil
case "ap-southeast-3":
return []string{
"ap-southeast-3a",
"ap-southeast-3b",
"ap-southeast-3c",
}, nil
case "eu-central-1":
return []string{
"eu-central-1a",
Expand Down Expand Up @@ -836,5 +842,5 @@ func staticRegionToZones(region string) ([]string, error) {
"cn-northwest-1c",
}, nil
}
return nil, errors.New("cannot get availability zones for region")
return nil, errors.New("Cannot get availability zones for region")
}

0 comments on commit 983ddca

Please sign in to comment.