FEATURE: Add AWS S3 EU (London) "eu-west-2" region

This commit is contained in:
Dean Taylor 2017-04-12 07:26:25 +01:00 committed by Sam
parent 4cb6880766
commit 1a9afa976d
3 changed files with 3 additions and 1 deletions

View File

@ -15,6 +15,7 @@ class S3RegionSiteSetting < EnumSiteSetting
'us-west-2',
'us-gov-west-1',
'eu-west-1',
'eu-west-2',
'eu-central-1',
'ap-southeast-1',
'ap-southeast-2',

View File

@ -181,6 +181,7 @@ en:
us_west_2: "US West (Oregon)"
us_gov_west_1: "AWS GovCloud (US)"
eu_west_1: "EU (Ireland)"
eu_west_2: "EU (London)"
eu_central_1: "EU (Frankfurt)"
ap_southeast_1: "Asia Pacific (Singapore)"
ap_southeast_2: "Asia Pacific (Sydney)"

View File

@ -14,7 +14,7 @@ describe S3RegionSiteSetting do
describe 'values' do
it 'returns all the S3 regions' do
expect(S3RegionSiteSetting.values.map {|x| x[:value]}.sort).to eq(['us-east-1', 'us-west-1', 'us-west-2', 'us-gov-west-1', 'eu-west-1', 'eu-central-1', 'ap-southeast-1', 'ap-southeast-2', 'ap-south-1', 'ap-northeast-1', 'ap-northeast-2', 'sa-east-1', 'cn-north-1'].sort)
expect(S3RegionSiteSetting.values.map {|x| x[:value]}.sort).to eq(['us-east-1', 'us-west-1', 'us-west-2', 'us-gov-west-1', 'eu-west-1', 'eu-west-2', 'eu-central-1', 'ap-southeast-1', 'ap-southeast-2', 'ap-south-1', 'ap-northeast-1', 'ap-northeast-2', 'sa-east-1', 'cn-north-1'].sort)
end
end