Is it possible to create an RDS instance that does...
# aws
s
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
Copy code
const rds = new aws.rds.Instance(dbName, {
        name: dbName,
        engine: 'mysql',
        username: mysqlUser,
        password: mysqlPassword,
...});
b
s
missed that one, cheers @billowy-army-68599 🤦