Skip to content

Commit

Permalink
Use proper SecretNamePrefix instead of SecretName
Browse files Browse the repository at this point in the history
  • Loading branch information
ejeffrli committed Nov 4, 2024
1 parent bd915a8 commit 483fc3b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export class OpenSearchStack extends cdk.Stack {
parameters: {
'AthenaCatalogName': `opensearch-cdk-deployed`,
'IsVPCAccess': true,
'SecretName': 'asdf',
'SecretNamePrefix': 'asdf',
'AutoDiscoverEndpoint': false,
'DomainMapping': `default=${connectionString}`,
'SecurityGroupIds': [securityGroup.securityGroupId],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export class RdsGenericStack extends cdk.Stack {
templateFile: cfn_template_file,
parameters: {
'LambdaFunctionName': `${db_type}-cdk-deployed`,
'SecretName': 'asdf',
'SecretNamePrefix': 'asdf',
'DefaultConnectionString': `${connectionStringPrefix}://${connectionString}`,
'SecurityGroupIds': [securityGroup.securityGroupId],
'SubnetIds': [subnet.subnetId],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export class RedshiftStack extends cdk.Stack {
templateFile: cfn_template_file,
parameters: {
'LambdaFunctionName': 'redshift-cdk-deployed',
'SecretName': 'asdf',
'SecretNamePrefix': 'asdf',
'DefaultConnectionString': `${connectionStringPrefix}://${connectionString}`,
'SecurityGroupIds': [securityGroup.securityGroupId],
'SubnetIds': [subnet.subnetId],
Expand Down

0 comments on commit 483fc3b

Please sign in to comment.