reach_commons 0.18.41__py3-none-any.whl → 0.18.42__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -47,6 +47,7 @@ def get_secret(
|
|
|
47
47
|
region_name: str = "us-east-1",
|
|
48
48
|
host=os.getenv("MYSQL_HOST"),
|
|
49
49
|
db_name=os.getenv("MYSQL_DB_NAME"),
|
|
50
|
+
port=os.getenv("MYSQL_PORT"),
|
|
50
51
|
) -> Dict[str, Any]:
|
|
51
52
|
"""
|
|
52
53
|
Load DB credentials from AWS Secrets Manager and host from SSM Parameter Store.
|
|
@@ -76,6 +77,9 @@ def get_secret(
|
|
|
76
77
|
secrets_data["host"] = host
|
|
77
78
|
secrets_data["dbname"] = db_name
|
|
78
79
|
|
|
80
|
+
if port is None:
|
|
81
|
+
secrets_data["port"] = 3306
|
|
82
|
+
|
|
79
83
|
missing = [
|
|
80
84
|
key
|
|
81
85
|
for key in ("host", "username", "password", "dbname")
|
|
@@ -17,7 +17,7 @@ reach_commons/mongo/customer_persistence_async.py,sha256=BmcP8TXyyQah-GYM3wcKi1b
|
|
|
17
17
|
reach_commons/mongo/validation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
18
|
reach_commons/reach_aws/__init__.py,sha256=xb97rt0lBd0wz9ZhULQ7YVAOceOS-AkvNVM4jfLOjYE,86
|
|
19
19
|
reach_commons/reach_aws/commons.py,sha256=qQba0li75BIpmyVc0sDVrrxbtYvDCedF6RmFD-V4MYQ,259
|
|
20
|
-
reach_commons/reach_aws/db_config.py,sha256=
|
|
20
|
+
reach_commons/reach_aws/db_config.py,sha256=UXi2FsJi_xE7L67-w2p9I2EhktIhWcIpbwL5lkmNp8k,2809
|
|
21
21
|
reach_commons/reach_aws/dynamo_db.py,sha256=BL3QcKzx4uZic-Ui12tln_GMSKe297FdfyIzFPE7veE,7140
|
|
22
22
|
reach_commons/reach_aws/exceptions.py,sha256=x0RL5ktNtzxg0KykhEVWReBq_dEtciK6B2vMs_s4C9k,915
|
|
23
23
|
reach_commons/reach_aws/firehose.py,sha256=1xFKLWMv3bNo3PPW5gtaL6NqzUDyVil6B768slj2wbY,5674
|
|
@@ -30,6 +30,6 @@ reach_commons/redis_manager.py,sha256=yRed53ZKlbIb6rZnL53D1F_aB-xWT3nbeUP2cqYzho
|
|
|
30
30
|
reach_commons/sms_smart_encoding.py,sha256=92y0RmZ0l4ONHpC9qeO5KfViSNq64yE2rc7lhNDSZqE,1241
|
|
31
31
|
reach_commons/utils.py,sha256=dMgKIGqTgoSItuBI8oz81gKtW3qi21Jkljv9leS_V88,8475
|
|
32
32
|
reach_commons/validations.py,sha256=x_lkrtlrCAJC_f7mZb19JjfKFbYlPFv-P84K_lbZyYs,1056
|
|
33
|
-
reach_commons-0.18.
|
|
34
|
-
reach_commons-0.18.
|
|
35
|
-
reach_commons-0.18.
|
|
33
|
+
reach_commons-0.18.42.dist-info/METADATA,sha256=GcTKPeC_hnviyGqRmrpxr2VsoTr6SBdYwpPSQsH7MdQ,1863
|
|
34
|
+
reach_commons-0.18.42.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
35
|
+
reach_commons-0.18.42.dist-info/RECORD,,
|
|
File without changes
|