Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions SecretsManagerRDSOracleRotationMultiUser/lambda_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ def lambda_handler(event, context):

"""

# Thick client to match functionality of cx_oracle
oracledb.init_oracle_client()

arn = event['SecretId']
token = event['ClientRequestToken']
step = event['Step']
Expand Down
3 changes: 3 additions & 0 deletions SecretsManagerRDSOracleRotationSingleUser/lambda_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ def lambda_handler(event, context):

"""

# Thick client to match functionality of cx_oracle
oracledb.init_oracle_client()

arn = event['SecretId']
token = event['ClientRequestToken']
step = event['Step']
Expand Down