Skip to content

Commit 70b8ccd

Browse files
windmgctysoekong
authored andcommitted
fix(*): fix http proxy config var name (Kong#70)
* fix(*): fix http proxy config var name * docs(*): fix changelog
1 parent 6e70e25 commit 70b8ccd

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,21 @@ Release process:
163163
1. upload using: `VERSION=x.y.z APIKEY=abc... make upload`
164164
1. test installing the rock from LuaRocks
165165

166+
### Unreleased
167+
168+
- fix: fix AWS_CONTAINER_CREDENTIALS_FULL_URI parsing.
169+
[#65](https://github.com/Kong/lua-resty-aws/pull/65)
170+
- feat: support configure timeout on service request.
171+
[#67](https://github.com/Kong/lua-resty-aws/pull/67)
172+
- feat: support configure keepalive idle time on service request connection.
173+
[#67](https://github.com/Kong/lua-resty-aws/pull/67)
174+
- feat: support configure ssl verify on service request.
175+
[#67](https://github.com/Kong/lua-resty-aws/pull/67)
176+
- feat: add http/https proxy support for service request
177+
[#69](https://github.com/Kong/lua-resty-aws/pull/69)
178+
- fix: fix proxy-related global config var name to lowercase.
179+
[#70](https://github.com/Kong/lua-resty-aws/pull/70)
180+
166181
### 1.2.3 (20-Jul-2023)
167182

168183
- fix: fix assumeRole function name on STS.

src/resty/aws/config.lua

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,11 @@ local env_vars = {
140140
-- Variables used in RemoteCredentials (and in the CredentialProviderChain)
141141
AWS_CONTAINER_CREDENTIALS_RELATIVE_URI = { name = "AWS_CONTAINER_CREDENTIALS_RELATIVE_URI", default = nil },
142142
AWS_CONTAINER_CREDENTIALS_FULL_URI = { name = "AWS_CONTAINER_CREDENTIALS_FULL_URI", default = nil },
143+
144+
-- HTTP/HTTPs proxy settings
145+
HTTP_PROXY = { name = "http_proxy", default = nil },
146+
HTTPS_PROXY = { name = "https_proxy", default = nil },
147+
NO_PROXY = { name = "no_proxy", default = nil },
143148
}
144149

145150
-- populate the env vars with their values, or defaults

0 commit comments

Comments
 (0)