我遇到以下错误:
cloudformation rds::db::instance creation failed.... error message is "Invalid master password"
是否有人解决此问题?图像:
答案 0 :(得分:0)
我在cloudformation中遇到相同的问题/错误。对我来说,这是因为我正在创建一个具有两个实例的Aurora(MySql)群集,并且将错误的参数传递给了这些实例。因为我的属性错误,所以AWS将实例视为独立实例,并给了我这个错误。检查群集或实例所需的每个属性:
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html
答案 1 :(得分:0)
您需要将此配置添加到您的cloudformation template
下,
即使您指定DBcluster,也需要在单独的username
中添加password
和DBInstance
。
MasterUsername="Username",
MasterUserPass="Password",