I used the CloudFormation template to spin up Jira for AWS however we use MySQl for hour Jira. I imported the back and it worked perfectly by i am missing all the data.
How do i switch it from Postgres to Mysql.
Is there a workaround for this issue?
Thanks
Felix
I haven't tested it, but the RDS engine is defined in the template. You should be able to replace it in the template and then attempt?
DB:
Type: AWS::RDS::DBInstance
Properties:
AllocatedStorage: !Ref DBStorage
DBInstanceClass: !Ref DBInstanceClass
DBInstanceIdentifier: !Ref AWS::StackName
DBSubnetGroupName: !Ref DBSubnetGroup
Engine: postgres
EngineVersion: 9.6
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.