File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -163,6 +163,21 @@ Release process:
163
163
1 . upload using: ` VERSION=x.y.z APIKEY=abc... make upload `
164
164
1 . test installing the rock from LuaRocks
165
165
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
+
166
181
### 1.2.3 (20-Jul-2023)
167
182
168
183
- fix: fix assumeRole function name on STS.
Original file line number Diff line number Diff line change @@ -140,6 +140,11 @@ local env_vars = {
140
140
-- Variables used in RemoteCredentials (and in the CredentialProviderChain)
141
141
AWS_CONTAINER_CREDENTIALS_RELATIVE_URI = { name = " AWS_CONTAINER_CREDENTIALS_RELATIVE_URI" , default = nil },
142
142
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 },
143
148
}
144
149
145
150
-- populate the env vars with their values, or defaults
You can’t perform that action at this time.
0 commit comments