You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently a user can set ENV['SSM_SKIP_RESOLUTION']. This will disable setting the @client in Uc3Ssm::ConfigResolver instances. But the user can not directly set a ssm_skip_resolution option when calling Uc3Ssm::ConfigResolver.new().
Also, this instance var should be treated strictly as boolean. Just checking if ENV.key?('SSM_SKIP_RESOLUTION') is not sufficient. The user should be able to set ENV['SSM_SKIP_RESOLUTION'] = 'false'.
The text was updated successfully, but these errors were encountered:
Currently a user can set
ENV['SSM_SKIP_RESOLUTION']
. This will disable setting the@client
inUc3Ssm::ConfigResolver
instances. But the user can not directly set assm_skip_resolution
option when callingUc3Ssm::ConfigResolver.new()
.Also, this instance var should be treated strictly as boolean. Just checking if
ENV.key?('SSM_SKIP_RESOLUTION')
is not sufficient. The user should be able to setENV['SSM_SKIP_RESOLUTION'] = 'false'
.The text was updated successfully, but these errors were encountered: