|
1 | 1 | import os
|
2 | 2 | import logging
|
3 | 3 | from pathlib import Path
|
4 |
| -from typing import TYPE_CHECKING, Any, Dict, Optional, Union |
| 4 | +from typing import TYPE_CHECKING, Any, Dict, Optional |
5 | 5 |
|
6 | 6 | from botocore.exceptions import ClientError
|
7 | 7 | from botocore.client import Config
|
|
19 | 19 | class AwsSsmSettingsSource:
|
20 | 20 | __slots__ = ("ssm_prefix",)
|
21 | 21 |
|
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 |
24 | 24 |
|
25 | 25 | @property
|
26 | 26 | def client(self) -> "SSMClient":
|
@@ -48,17 +48,18 @@ def __call__(self, settings: BaseSettings) -> Dict[str, Any]:
|
48 | 48 | logger.debug(f"Building SSM settings with prefix of {secrets_path=}")
|
49 | 49 |
|
50 | 50 | 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 | + |
54 | 60 | except ClientError:
|
55 | 61 | logger.exception("Failed to get parameters from %s", secrets_path)
|
56 | 62 | return {}
|
57 | 63 |
|
58 |
| - return { |
59 |
| - str(Path(param["Name"]).relative_to(secrets_path)): param["Value"] |
60 |
| - for param in params |
61 |
| - } |
62 |
| - |
63 | 64 | def __repr__(self) -> str:
|
64 | 65 | return f"AwsSsmSettingsSource(ssm_prefix={self.ssm_prefix!r})"
|
0 commit comments