Skip to content

Commit aad68db

Browse files
refactor: Remove AWS access key and secret from configuration
1 parent e733bf9 commit aad68db

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

aws/boto_aws.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,4 @@ def get_instance_aws(service_name: ServiceNameAWS):
1010
return client(
1111
service_name.value,
1212
region_name=config.REGION,
13-
aws_access_key_id=config.KEY_ACCESS,
14-
aws_secret_access_key=config.KEY_SECRET
1513
)

config.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
logger = logging.getLogger(__name__)
55

66
class Config(BaseSettings):
7-
KEY_ACCESS: str
8-
KEY_SECRET: str
97
REGION: str
108
BUCKET_NAME: str
119
QUEUE_URL: str

0 commit comments

Comments
 (0)