Hi Team,
While creating AWS Aurora account we are getting authentication error. Could you please help me how we can overcome this error.
Thanks,
Debasis
Hi Team,
While creating AWS Aurora account we are getting authentication error. Could you please help me how we can overcome this error.
Thanks,
Debasis
What’s the context (say, is this in a KodeKloud playground, or somewhere else?) and what’s the exact error?
@rob_kodekloud Yes , while doing some hands-on on kodekloud playground the error is showing. Screenshot is attached for same. Here I am creating RDS Aurora cluster.
Thanks
This does appear to be the behavior of our playground in trying to create any kind of RDS database right now. Since our “List of Services” say you should be able to create a database, this is now logged as a bug in our internal system. I’ll add your report here to that bug report, to raise the chance that you’ll get notified when it’s fixed.
Hi Team,
Could anyone update on the above issue status.
Thanks,
Debasis
Please check it again; this should be fixed now.
Team,
Please update on this because I need to perform some practice for my next week Interview. Please need help urgently.
Thanks,
Debasis
I just created an Aurora Postgres DB in the playground. It takes some persistence, since (1) AWS interface here is execrable, and (2) you need to tune the parameters; the errors are not very informative. Make sure you are not asking for settings like monitoring, which we do not support.
[cloudshell-user@ip-10-134-43-124 ~]$ aws rds describe-db-instances > instances.json
[cloudshell-user@ip-10-134-43-124 ~]$ cat instances.json
{
"DBInstances": [
{
"DBInstanceIdentifier": "database-1-instance-1",
"DBInstanceClass": "db.t3.medium",
"Engine": "aurora-postgresql",
"DBInstanceStatus": "available",
"MasterUsername": "postgres",
"Endpoint": {
"Address": "database-1-instance-1.cl0ec2eug3d2.us-east-1.rds.amazonaws.com",
"Port": 5432,
"HostedZoneId": "Z2R2ITUGPM61AM"
},
"AllocatedStorage": 1,
"InstanceCreateTime": "2024-09-21T22:07:15.497000+00:00",
"PreferredBackupWindow": "08:54-09:24",
"BackupRetentionPeriod": 7,
"DBSecurityGroups": [],
"VpcSecurityGroups": [
{
"VpcSecurityGroupId": "sg-001d43a00f2eecc9a",
"Status": "active"
}
],
"DBParameterGroups": [
{
"DBParameterGroupName": "default.aurora-postgresql15",
"ParameterApplyStatus": "in-sync"
}
],
"AvailabilityZone": "us-east-1c",
"DBSubnetGroup": {
"DBSubnetGroupName": "default",
"DBSubnetGroupDescription": "default",
"VpcId": "vpc-0fa8ad91cbb7388e7",
"SubnetGroupStatus": "Complete",
"Subnets": [
{
"SubnetIdentifier": "subnet-0618198f54f70e54a",
"SubnetAvailabilityZone": {
"Name": "us-east-1d"
},
"SubnetOutpost": {},
"SubnetStatus": "Active"
},
{
"SubnetIdentifier": "subnet-08e2b8c890aa27633",
"SubnetAvailabilityZone": {
"Name": "us-east-1a"
},
"SubnetOutpost": {},
"SubnetStatus": "Active"
},
{
"SubnetIdentifier": "subnet-03eb4dcb510cc1c73",
"SubnetAvailabilityZone": {
"Name": "us-east-1e"
},
"SubnetOutpost": {},
"SubnetStatus": "Active"
},
{
"SubnetIdentifier": "subnet-0009628c6afd528b4",
"SubnetAvailabilityZone": {
"Name": "us-east-1b"
},
"SubnetOutpost": {},
"SubnetStatus": "Active"
},
{
"SubnetIdentifier": "subnet-02a25a30a095a7518",
"SubnetAvailabilityZone": {
"Name": "us-east-1c"
},
"SubnetOutpost": {},
"SubnetStatus": "Active"
},
{
"SubnetIdentifier": "subnet-01ae4a05657a9a557",
"SubnetAvailabilityZone": {
"Name": "us-east-1f"
},
"SubnetOutpost": {},
"SubnetStatus": "Active"
}
]
},
"PreferredMaintenanceWindow": "thu:10:14-thu:10:44",
"PendingModifiedValues": {},
"MultiAZ": false,
"EngineVersion": "15.4",
"AutoMinorVersionUpgrade": true,
"ReadReplicaDBInstanceIdentifiers": [],
"LicenseModel": "postgresql-license",
"OptionGroupMemberships": [
{
"OptionGroupName": "default:aurora-postgresql-15",
"Status": "in-sync"
}
],
"PubliclyAccessible": false,
"StorageType": "aurora",
"DbInstancePort": 0,
"DBClusterIdentifier": "database-1",
"StorageEncrypted": true,
"KmsKeyId": "arn:aws:kms:us-east-1:851725505989:key/0a00ab26-88b3-4845-b2a0-497be8a37c92",
"DbiResourceId": "db-2PO33KBYYP2TECFXRFOINU45UE",
"CACertificateIdentifier": "rds-ca-rsa2048-g1",
"DomainMemberships": [],
"CopyTagsToSnapshot": false,
"MonitoringInterval": 0,
"PromotionTier": 1,
"DBInstanceArn": "arn:aws:rds:us-east-1:851725505989:db:database-1-instance-1",
"IAMDatabaseAuthenticationEnabled": false,
"PerformanceInsightsEnabled": false,
"DeletionProtection": false,
"AssociatedRoles": [],
"TagList": [],
"CustomerOwnedIpEnabled": false,
"BackupTarget": "region",
"NetworkType": "IPV4",
"StorageThroughput": 0,
"CertificateDetails": {
"CAIdentifier": "rds-ca-rsa2048-g1",
"ValidTill": "2025-09-21T22:05:43+00:00"
},
"DedicatedLogVolume": false,
"EngineLifecycleSupport": "open-source-rds-extended-support-disabled"
}
]
}
@rob_kodekloud Can You share the link or references which we can follow to create RDS Aurora Instance.
Thanks,
Debasis
I just experimented. The reason I enclosed the JSON object above is to show what settings I used. Key things were using Development type objects, no monitoring, and relatively small instance sizes. No magic to it.