I am creating Rds using cloudformation. I am unable to understand the dbinstancerole
in associatedrole. How to create one and give it. And since I am new to this, if there is any changes in the template do suggest them.
---
AWSTemplateFormatVersion: 2010-09-09
Parameters:
dbsg:
Type: String
VpcID:
Type: String
Resources:
RDS:
Type: AWS::RDS::DBInstance
Properties:
AllocatedStorage: 100 GB
AssociatedRoles:
- DBInstanceRole
AutoMinorVersionUpgrade: Boolean
AvailabilityZone: us-east-2a
DBClusterIdentifier: String
DBInstanceClass: db.t2.micro
DBInstanceIdentifier: mysqldb
DBName: mysqldb
DBSecurityGroups:
- !Ref dbsg
Engine: mysql
EngineVersion: 8.0.17
MasterUsername: mysqldb
MasterUserPassword: mysql456
Port: 3306