Skip to content

Commit

Permalink
add another allowed hostname for Pod Identity
Browse files Browse the repository at this point in the history
  • Loading branch information
windmgc committed Feb 19, 2024
1 parent dfe9f19 commit ead0dae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resty/aws/credentials/RemoteCredentials.lua
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ local function initialize()

local FULL_URI_UNRESTRICTED_PROTOCOLS = makeset { "https" }
local FULL_URI_ALLOWED_PROTOCOLS = makeset { "http", "https" }
local FULL_URI_ALLOWED_HOSTNAMES = makeset { "localhost", "127.0.0.1" }
local FULL_URI_ALLOWED_HOSTNAMES = makeset { "localhost", "127.0.0.1", "169.254.170.23" }
local RELATIVE_URI_HOST = '169.254.170.2'

local function getFullUri()
Expand Down

0 comments on commit ead0dae

Please sign in to comment.