Skip to content

Commit 1e65450

Browse files
Fix bug "create CloudFront distro @ EU"
1 parent 39230ff commit 1e65450

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
This project uses [Semantic Versioning](http://semver.org).
44

5+
## 1.5.5
6+
7+
* Fix bug that prevented creating new CloudFront distributions in the EU region
8+
59
## 1.5.4
610

711
* Remove usage of the deprecated OpenSSL::Digest::Digest

lib/configure-s3-website/s3_client.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def initialize(location_constraint)
145145
def location_constraints
146146
eu_west_1_region = {
147147
:region => 'EU (Ireland)',
148-
:website_hostname => 's3-website-eu-west-1.amazonaws.com',
148+
:website_endpoint => 's3-website-eu-west-1.amazonaws.com',
149149
:endpoint => 's3-eu-west-1.amazonaws.com'
150150
}
151151

lib/configure-s3-website/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ConfigureS3Website
2-
VERSION = '1.5.4'
2+
VERSION = '1.5.5'
33
end

0 commit comments

Comments
 (0)