diff --git a/containers/buildpack/utils/aws/ecr/utils.go b/containers/buildpack/utils/aws/ecr/utils.go index 935311a..e89956b 100644 --- a/containers/buildpack/utils/aws/ecr/utils.go +++ b/containers/buildpack/utils/aws/ecr/utils.go @@ -30,6 +30,7 @@ func extractRegionFromURL(url string) (string, error) { regions := []string{ aws.RegionUsEast1, aws.RegionApSouthEast2, + aws.RegionApSouthEast6, } for _, region := range regions { diff --git a/internal/aws/const.go b/internal/aws/const.go index a38b42b..c0d7020 100644 --- a/internal/aws/const.go +++ b/internal/aws/const.go @@ -3,5 +3,8 @@ package aws // RegionApSouthEast2 is an AWS region. const RegionApSouthEast2 = "ap-southeast-2" +// RegionApSouthEast6 is an AWS region. +const RegionApSouthEast6 = "ap-southeast-6" + // RegionUsEast1 is an AWS region. const RegionUsEast1 = "us-east-1"