skip to Main Content

Amazon web services – Upgrading MySQL from 5.7 to 8.0 failed due to `Certificate not found: rds-ca-2015`, how to fix?

I am manually Upgrading MySQL from 5.7 to 8.0 in my RDS Console. following this documentation https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html However I am facing and Issue when I press the modify Db Instance button. it produce the error Certificate not found: rds-ca-2015 Does…

VIEW QUESTION

Amazon web services – Set rds endpoint as an environment variable to Elastic Beanstalk in terraform

I have the following terraform script which creates Elastic Beanstalk with rds: resource "aws_elastic_beanstalk_application" "elb_app" { name = "my-app" } resource "aws_elastic_beanstalk_environment" "elb_env" { name = "my-env" application = aws_elastic_beanstalk_application.elb_app.name solution_stack_name = data.aws_elastic_beanstalk_solution_stack.net_latest.name setting { namespace = "aws:elasticbeanstalk:application:environment" name =…

VIEW QUESTION
Back To Top
Search