Created
December 9, 2017 11:15
-
-
Save li0nel/ee5d4ac2f66c5e53956b45226d7c16a5 to your computer and use it in GitHub Desktop.
CloudFormation stack for a DB Cluster read replica
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DatabaseReplicaInstance: | |
Type: AWS::RDS::DBInstance | |
DependsOn: DatabasePrimaryInstance | |
Properties: | |
Engine: aurora | |
DBClusterIdentifier: !Ref DatabaseCluster | |
DBInstanceClass: !Ref DatabaseInstanceType | |
DBSubnetGroupName: !Ref DatabaseSubnetGroup |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment