https://pulumi.com logo
Title
s

straight-yacht-47796

03/15/2023, 5:14 PM
Is it possible to create an RDS instance that does not have suffix characters in the DB identifier? I have tried setting the
name
attribute but I still keep getting a DB identifier
nameXXXXXXX
snippet of code
const rds = new aws.rds.Instance(dbName, {
        name: dbName,
        engine: 'mysql',
        username: mysqlUser,
        password: mysqlPassword,
...});
b

billowy-army-68599

03/15/2023, 5:17 PM
s

straight-yacht-47796

03/15/2023, 5:18 PM
missed that one, cheers @billowy-army-68599 🤦