Skip to content

Commit

Permalink
fix(release): we use aws instance profiles now instead of static AWS …
Browse files Browse the repository at this point in the history
…credentials (#9326)

* fix(release): we use aws instance profiles now instead of static AWS credentials

* Update .requirements

Co-authored-by: Hans Hübner <hans.huebner@gmail.com>
  • Loading branch information
2 people authored and Hans Hübner committed Aug 29, 2022
1 parent b85b2ec commit 17707d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .requirements
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ RESTY_LMDB_VERSION=1.0.0
RESTY_EVENTS_VERSION=0.1.3
ATC_ROUTER_VERSION=1.0.0
LIBYAML_VERSION=0.2.5
KONG_BUILD_TOOLS_VERSION=4.33.9
KONG_BUILD_TOOLS_VERSION=4.33.11
KONG_NGINX_MODULE_BRANCH=0.2.1
3 changes: 1 addition & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,8 @@ pipeline {
KONG_SOURCE_LOCATION = "${env.WORKSPACE}"
KONG_BUILD_TOOLS_LOCATION = "${env.WORKSPACE}/../kong-build-tools"
PACKAGE_TYPE = "rpm"
AWS_ACCESS_KEY = credentials('AWS_ACCESS_KEY')
AWS_SECRET_ACCESS_KEY = credentials('AWS_SECRET_ACCESS_KEY')
GITHUB_SSH_KEY = credentials('github_bot_ssh_key')
AWS_ACCESS_KEY = "instanceprofile"
}
steps {
sh 'echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin || true'
Expand Down

0 comments on commit 17707d9

Please sign in to comment.