Skip to content

Commit aa287d2

Browse files
committed
MQE-1919: MFTF AWS Secrets Manager - CI Use
1 parent 6a06605 commit aa287d2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Magento/FunctionalTestingFramework/DataGenerator/Handlers/SecretStorage/AwsSecretsManagerStorage.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ private function parseAwsSecretResult($awsResult, $key)
147147
// Return secret from the associated KMS CMK
148148
if (isset($awsResult['SecretString'])) {
149149
$rawSecret = $awsResult['SecretString'];
150+
print_r("Raw Secret: $rawSecret");
150151
} else {
151152
print_r('raw result:');
152153
var_dump($awsResult);
@@ -181,7 +182,7 @@ private function createAwsSecretsManagerClient($region, $profile)
181182
$options = [
182183
'region' => $region,
183184
'version' => self::LATEST_VERSION,
184-
'debug' => true
185+
//'debug' => true
185186
];
186187

187188
if (!empty($profile)) {

0 commit comments

Comments
 (0)