chore: update secret more robustly

Co-authored-by: qodo-merge-pro-for-open-source[bot] <189517486+qodo-merge-pro-for-open-source[bot]@users.noreply.github.com>
This commit is contained in:
Tomoya Kawaguchi
2025-06-02 13:48:47 +09:00
committed by GitHub
parent e2867f3a19
commit c520a8658f

View File

@ -48,7 +48,7 @@ class AWSSecretsManagerProvider(SecretProvider):
def store_secret(self, secret_name: str, secret_value: str):
try:
self.client.update_secret(
self.client.put_secret_value(
SecretId=secret_name,
SecretString=secret_value
)