Aurora Configuration issue

0

uroraSubnetGroup: Type: AWS::RDS::DBSubnetGroup Properties: DBSubnetGroupDescription: Free tier subnet group for Aurora SubnetIds: - !Ref PrivateSubnet2 # Subnet in AZ 1 - !Ref PrivateSubnet4 # Subnet in AZ 2 DBSubnetGroupName: FreeTierSubnetGroup

AuroraDBCluster: Type: AWS::RDS::DBCluster Properties: Engine: aurora EngineVersion: 8.0.mysql_aurora.3.06.0 MasterUsername: admin m.UserPassword: DBSubnetGroupName: !Ref AuroraSubnetGroup VpcSecurityGroupIds: - !Ref DatabaseSecurityGroup

AuroraDBInstance: Type: AWS::RDS::DBInstance Properties: DBClusterIdentifier: !Ref AuroraDBCluster Engine: aurora DBInstanceClass: db.m7g.16xlarge AvailabilityZone: ap-south-1c # You can specify any AZ here DBSubnetGroupName: !Ref AuroraSubnetGroup PubliclyAccessible: false VPCSecurityGroups: - !Ref DatabaseSecurityGroup

Outputs: AuroraDBClusterEndpoint: Description: Endpoint of the Aurora DB Cluster Value: !GetAtt AuroraDBCluster.Endpoint.Address

has all the required YAML code as a pre-requisite for the issue i am facing with DBInstanceClass and EngineVersion: 8.0.mysql_aurora.3.06.0 for this lins currently using the Mumbai region could anyone suggest to me what changes have to make to configure the aurora multi az with MySQL. the error I am getting from cloud formation is "Cannot find version 8.0.mysql_aurora.3.06.0 for aurora" . also successfully checked the engine version using **AWS CLI **

Arfat
已提問 1 個月前檢視次數 211 次
2 個答案
0

Hi

As you already confirmed that you have checked with CLI with versions, CLI commands information link from https://repost.aws/questions/QU_cpHi6m5SpagRN2eH8_KqQ/aurora-cluster-db-instance-class-for-my-region

That's unusual! Here's why you might be seeing a discrepancy between the CLI availability and the CloudFormation error.

Engine: The name of the database engine to be used for this DB cluster. Valid Values:

  • aurora-mysql
  • aurora-postgresql
  • mysql
  • postgres
profile picture
專家
GK
已回答 1 個月前
0

db.r5.12xlarge
db.r5.12xlarge
db.r5.16xlarge
db.r5.16xlarge
db.r5.24xlarge
db.r5.24xlarge
db.r5.2xlarge
db.r5.2xlarge
db.r5.4xlarge
db.r5.4xlarge
db.r5.8xlarge
db.r5.8xlarge
db.r5.large
db.r5.large
db.r5.xlarge
db.r5.xlarge
db.r6g.12xlarge db.r6g.12xlarge db.r6g.16xlarge db.r6g.16xlarge

getting this, could you please suggest to me the most pocket-friendly option for practice

Arfat
已回答 1 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南