Skip to content

Commit

Permalink
Fix dualstack smoke test config
Browse files Browse the repository at this point in the history
  • Loading branch information
mullermp committed Jul 18, 2024
1 parent 3331662 commit 37917dc
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,14 @@ def config_map(raw_key, raw_value)
when 'sigv4aRegionSet' then nil # TODO
when 'uri' then ['endpoint', raw_value]
when 'useFips' then ['use_fips_endpoint', raw_value]
when 'useDualStack' then ['use_dualstack_endpoint', raw_value]
when 'useDualstack' then ['use_dualstack_endpoint', raw_value]
# service specific
when 'useGlobalEndpoint'
value = raw_value == 'true' ? 'legacy' : 'regional'
if @service.name == 'S3'
case @service.name
when 'S3'
['s3_us_east_1_regional_endpoint', value]
elsif @service.name == 'STS'
when 'STS'
['sts_regional_endpoints', value]
end
# s3 specific
Expand Down

0 comments on commit 37917dc

Please sign in to comment.