Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug Fix] wordpress/wordpress-ha-aurora - Replace unsupported RDS engine #683

Merged
merged 2 commits into from
May 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions wordpress/wordpress-ha-aurora.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ Resources:
BackupRetentionPeriod: !Ref DBBackupRetentionPeriod
DatabaseName: wordpress
DBSubnetGroupName: !Ref DBSubnetGroup
Engine: aurora
Engine: 'aurora-mysql'
MasterUsername: wordpress
MasterUserPassword: !Ref DBMasterUserPassword
VpcSecurityGroupIds:
Expand Down Expand Up @@ -619,14 +619,14 @@ Resources:
Properties:
DBClusterIdentifier: !Ref DatabaseCluster
DBInstanceClass: !Ref DBServerInstanceType
Engine: aurora
Engine: 'aurora-mysql'
DBSubnetGroupName: !Ref DBSubnetGroup
DatabaseB:
Type: 'AWS::RDS::DBInstance'
Properties:
DBClusterIdentifier: !Ref DatabaseCluster
DBInstanceClass: !Ref DBServerInstanceType
Engine: aurora
Engine: 'aurora-mysql'
DBSubnetGroupName: !Ref DBSubnetGroup
WebServerInstanceProfile:
Type: 'AWS::IAM::InstanceProfile'
Expand Down