diff options
author | Joey Hess <joey@kitenet.net> | 2014-10-23 11:02:24 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-10-23 11:02:24 -0400 |
commit | 02cfebf0dd0f432d9339ad7af0b7030f9a3a03f1 (patch) | |
tree | 18128c7345bcf4c379d2b113fc9b35a7d246a688 | |
parent | 95b8c69c3ddb496f458d4b2e01e63750bc2a5e13 (diff) |
enable frankfurt
The aws library supports the AWS4-HMAC-SHA256 that it requires.
-rw-r--r-- | Remote/Helper/AWS.hs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Remote/Helper/AWS.hs b/Remote/Helper/AWS.hs index 1675e8a50..d27f2aad1 100644 --- a/Remote/Helper/AWS.hs +++ b/Remote/Helper/AWS.hs @@ -59,9 +59,7 @@ regionInfo service = map (\(t, r) -> (t, fromServiceRegion r)) $ [ ("US East (N. Virginia)", [S3Region "US", GlacierRegion "us-east-1"]) , ("US West (Oregon)", [BothRegion "us-west-2"]) , ("US West (N. California)", [BothRegion "us-west-1"]) - -- Requires AWS4-HMAC-SHA256 which S3 library does not - -- currently support. - -- , ("EU (Frankfurt)", [BothRegion "eu-central-1"]) + , ("EU (Frankfurt)", [BothRegion "eu-central-1"]) , ("EU (Ireland)", [S3Region "EU", GlacierRegion "eu-west-1"]) , ("Asia Pacific (Singapore)", [S3Region "ap-southeast-1"]) , ("Asia Pacific (Tokyo)", [BothRegion "ap-northeast-1"]) |