Skip to content

Commit

Permalink
chore:
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoPicci committed Jul 5, 2019
2 parents 423b2a6 + 456b9cf commit a2ed03a
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .make/cd/deploy_aws.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ read -d '' final_command << EOF || true
mkdir -p $(dirname ${credentials_file});
touch ${credentials_file};
echo '[byor]' > ${credentials_file};
echo 'aws_access_key_id=${inAwsKeyid}' >> ${credentials_file};
echo 'aws_secret_access_key=${inAwsSecretkey}' >> ${credentials_file};
echo 'aws_access_key_id=${AWS_ACCESS_KEY_ID}' >> ${credentials_file};
echo 'aws_secret_access_key=${AWS_SECRET_ACCESS_KEY}' >> ${credentials_file};
serverless deploy --stage ${AWS_SERVICE_STAGE} --region ${AWS_REGION}
EOF

Expand Down
8 changes: 4 additions & 4 deletions .talismanrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fileignoreconfig:
checksum: a1e105983c0bc867e694374f48240ce44bbd75477ea6222b7828e15fecb8c118
ignore_detectors: []
- filename: package-lock.json
checksum: 60ef72023b9d4644987897c5bb7d50bf465ead54e6184f3966ec8965b7a3d3ec
checksum: ac6d6c40eee72eee5cfa3f15cd8a3cf8c66f3fc85007a0fe9faf6e045283d312
ignore_detectors: []
- filename: .git/hooks/pre-commit.sample
checksum: db4357ef58ba0db53f99c087351e968b65f6907685a72c677b7481d430b73847
Expand Down Expand Up @@ -45,7 +45,7 @@ fileignoreconfig:
checksum: aa2466e9431a6ba44efa62e52905bd115b516affe917555a314bfb947d9fa2c0
ignore_detectors: []
- filename: .make/cd/deploy_aws.sh
checksum: 9b2c53705ddcf37ac81ff846cf5b4ea93e061e2570bf845631955d63d0b5d303
checksum: 2627500056800dbbb38e87e462b8c9b0ae9ad82154045735fd8160c78b378d6a
ignore_detectors: []
- filename: docker-compose.circle-ci.yml
checksum: d13489b074c136ac9a1ecbefefc55d0d6af1fadb6ae810d4b96a3cdf4978b961
Expand All @@ -54,11 +54,11 @@ fileignoreconfig:
checksum: 49ad2a84e5b624a6133dd86213901c416ceaf1291059a4243632443af8a706e3
ignore_detectors: []
- filename: .env
checksum: 7103ec841e5ebd717e69d203e7e999df0eeb76e6a7d24117a449ba23c81a3736
checksum: a98c3a1b6112ce48c82bb55ba604fabb568cb75210eae220011235b118029e90
ignore_detectors: []
- filename: config/byor.sh.sample
checksum: f6ea581aca0260b7f9d098b5715cfaed8702e3ff4de3b2e8f9e4429db9022982
ignore_detectors: []
- filename: .make/utils/get_byor_env.sh
checksum: b5f8ee2acbbc68ae3494c28fb13ce6fae03d51017e9b199e0a4ffb03a38d6907
checksum: e3d68f1f2758f038e8e70531c23e95b3ef5d9325b037132e57f6f5e7dccdcddf
ignore_detectors: []
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## [1.3.5](https://github.com/thoughtworks/byor-voting-server/compare/v1.3.4...v1.3.5) (2019-07-04)


### Bug Fixes

* **lambda:** change default region to eu-west-1 ([18cf858](https://github.com/thoughtworks/byor-voting-server/commit/18cf858))

## [1.3.4](https://github.com/thoughtworks/byor-voting-server/compare/v1.3.3...v1.3.4) (2019-07-04)


### Bug Fixes

* **make:** fix aws variable names in deploy_aws script ([9566508](https://github.com/thoughtworks/byor-voting-server/commit/9566508))

## [1.3.3](https://github.com/thoughtworks/byor-voting-server/compare/v1.3.2...v1.3.3) (2019-07-03)


Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-byor-server",
"version": "1.3.3",
"version": "1.3.5",
"private": true,
"main": "handler.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ provider:
profile: byor
# you can overwrite defaults here
stage: ${opt:stage,'dev'}
region: ${opt:region,'us-east-1'}
region: ${opt:region,'eu-west-1'}
deploymentBucket:
name: ${self:provider.stage}--byor-voting
environment:
Expand Down

0 comments on commit a2ed03a

Please sign in to comment.