Skip to content

Commit e5fca16

Browse files
jscariaalukach
andauthored
Paginate SSM Get Parameters by Path request (#7)
* use pagination * Update source.py * Update source.py Co-authored-by: Anthony Lukach <[email protected]>
1 parent f8f7c57 commit e5fca16

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

pydantic_ssm_settings/source.py

+12-11
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
import logging
33
from pathlib import Path
4-
from typing import TYPE_CHECKING, Any, Dict, Optional, Union
4+
from typing import TYPE_CHECKING, Any, Dict, Optional
55

66
from botocore.exceptions import ClientError
77
from botocore.client import Config
@@ -19,8 +19,8 @@
1919
class AwsSsmSettingsSource:
2020
__slots__ = ("ssm_prefix",)
2121

22-
def __init__(self, ssm_prefix: Union[typing.StrPath, None]):
23-
self.ssm_prefix: Union[typing.StrPath, None] = ssm_prefix
22+
def __init__(self, ssm_prefix: Optional[typing.StrPath]):
23+
self.ssm_prefix: Optional[typing.StrPath] = ssm_prefix
2424

2525
@property
2626
def client(self) -> "SSMClient":
@@ -48,17 +48,18 @@ def __call__(self, settings: BaseSettings) -> Dict[str, Any]:
4848
logger.debug(f"Building SSM settings with prefix of {secrets_path=}")
4949

5050
try:
51-
params = self.client.get_parameters_by_path(
52-
Path=str(secrets_path), WithDecryption=True
53-
)["Parameters"]
51+
paginator = self.client.get_paginator('get_parameters_by_path')
52+
response_iterator = paginator.paginate(Path=str(secrets_path), WithDecryption=True)
53+
54+
return {
55+
str(Path(parameter["Name"]).relative_to(secrets_path)): parameter["Value"]
56+
for page in response_iterator
57+
for parameter in page['Parameters']
58+
}
59+
5460
except ClientError:
5561
logger.exception("Failed to get parameters from %s", secrets_path)
5662
return {}
5763

58-
return {
59-
str(Path(param["Name"]).relative_to(secrets_path)): param["Value"]
60-
for param in params
61-
}
62-
6364
def __repr__(self) -> str:
6465
return f"AwsSsmSettingsSource(ssm_prefix={self.ssm_prefix!r})"

0 commit comments

Comments
 (0)