Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.340.5"
"${LATEST}": "3.342.1"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
4 changes: 4 additions & 0 deletions src/Service/SecretsManager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Added

- AWS api-change: TODO

## 2.6.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/Service/SecretsManager/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.6-dev"
"dev-master": "2.7-dev"
}
}
}
15 changes: 9 additions & 6 deletions src/Service/SecretsManager/src/SecretsManagerClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -547,25 +547,28 @@ protected function getEndpointMetadata(?string $region): array
'signVersions' => ['v4'],
];
case 'us-iso-east-1':
case 'us-iso-east-1-fips':
case 'us-iso-west-1':
case 'us-iso-west-1-fips':
return [
'endpoint' => "https://secretsmanager.$region.c2s.ic.gov",
'signRegion' => $region,
'signService' => 'secretsmanager',
'signVersions' => ['v4'],
];
case 'us-isof-east-1':
case 'us-isof-south-1':
case 'us-isob-east-1':
case 'us-isob-east-1-fips':
return [
'endpoint' => "https://secretsmanager.$region.csp.hci.ic.gov",
'endpoint' => "https://secretsmanager.$region.sc2s.sgov.gov",
'signRegion' => $region,
'signService' => 'secretsmanager',
'signVersions' => ['v4'],
];
case 'us-isob-east-1':
case 'us-isof-east-1':
case 'us-isof-south-1':
return [
'endpoint' => 'https://secretsmanager.us-isob-east-1.sc2s.sgov.gov',
'signRegion' => 'us-isob-east-1',
'endpoint' => "https://secretsmanager.$region.csp.hci.ic.gov",
'signRegion' => $region,
'signService' => 'secretsmanager',
'signVersions' => ['v4'],
];
Expand Down