Hi, The following used to work in SST v0.x ```new ...
# help
m
Hi, The following used to work in SST v0.x
Copy code
new RDS(this, 'db', {
      rdsServerlessCluster: {
          credentials: Credentials.fromUsername('admin', {
            secretName: `mySecretName`,
          }),
     }
})
With SST v1:
Copy code
new RDS(this, 'db', {
      cdk: {
          cluster: {
              credentials: Credentials.fromUsername('admin', {
                  secretName: `mySecretName`,
              }),
          }
     }
})
throws the following error (Source):
Copy code
`Only credentials managed by SecretManager are supported for the "cdk.cluster.credentials".`
How is this handled differently in SST v1?
t
I'm not seeing immediately why this isn't working @Frank do you have any idea
f
Taking a look
m
Thank you both!