Skip to content

Commit

Permalink
update password and username
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan Singer committed Apr 12, 2024
1 parent 437fe51 commit c8682c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/infra/iac/templates/aws/rds_instance/factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ function create(args: Args): aws.rds.Instance {

function properties(object: aws.rds.Instance, args: Args) {
return {
Password: kloConfig.requireSecret(`${args.Name}-password`),
Username: kloConfig.requireSecret(`${args.Name}-username`),
Password: object.password.apply((pass) => pass!),
Username: object.username,
CredentialsSecretValue: pulumi.jsonStringify({
username: object.username,
password: object.password,
Expand Down

0 comments on commit c8682c5

Please sign in to comment.