<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Muhammad Salman Zahid</title>
    <description>The latest articles on DEV Community by Muhammad Salman Zahid (@muhammad_salmanzahid_975).</description>
    <link>https://dev.to/muhammad_salmanzahid_975</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3013954%2F8e8b596e-3995-4a41-9e04-b8b32ee0d968.jpg</url>
      <title>DEV Community: Muhammad Salman Zahid</title>
      <link>https://dev.to/muhammad_salmanzahid_975</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/muhammad_salmanzahid_975"/>
    <language>en</language>
    <item>
      <title>AWS RDS Blue/Green Upgrade while Managing Infrastructure in Terraform</title>
      <dc:creator>Muhammad Salman Zahid</dc:creator>
      <pubDate>Fri, 18 Jul 2025 09:19:57 +0000</pubDate>
      <link>https://dev.to/muhammad_salmanzahid_975/aws-rds-bluegreen-upgrade-while-managing-infrastructure-in-terraform-oaf</link>
      <guid>https://dev.to/muhammad_salmanzahid_975/aws-rds-bluegreen-upgrade-while-managing-infrastructure-in-terraform-oaf</guid>
      <description>&lt;p&gt;AWS RDS Blue/Green Upgrade while Managing Infrastructure in Terraform&lt;br&gt;
If you're managing your AWS RDS MySQL 5.7 database using Terraform and need to upgrade to MySQL 8.0, the process isn't as straightforward as a simple terraform apply. AWS does not support in-place upgrades between major versions in Terraform directly. Instead, you need to orchestrate a blue/green deployment to ensure zero downtime and data integrity - and yes, you can still keep everything under Terraform management.&lt;/p&gt;

&lt;p&gt;In this article, I'll walk you through how to perform a blue/green upgrade from RDS MySQL 5.7 to 8.0 using the AWS Console for the upgrade process, while also ensuring your new RDS instance is properly represented and managed in Terraform.&lt;br&gt;
Let's get started with the pre-requisites and step-by-step implementation.&lt;/p&gt;
&lt;h2&gt;
  
  
  1. Update parameter group
&lt;/h2&gt;

&lt;p&gt;Before you can perform a blue/green deployment for a version upgrade, it's essential to ensure your MySQL 5.7 instance is using compatible binary logging parameters.&lt;br&gt;
In your Terraform configuration, locate the custom parameter group associated with your RDS instance and update it like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;resource "aws_db_parameter_group" "mysql_57_param_group" {
  name        = "rds-bg-demo-5-7-db-pg"
  family      = "mysql5.7"
  description = "Parameter group for MySQL 5.7 with binlog settings compatible with MySQL 8.0"

  parameter {
    name  = "binlog_format"
    value = "ROW"
  }
  parameter {
    name  = "binlog_row_image"
    value = "FULL"
  }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  2. Reboot Cluster to apply changes.
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvxbca2rz4zjksnnowq5i.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvxbca2rz4zjksnnowq5i.png" alt=" " width="800" height="172"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Provision Custom Parameter Group for Green Cluster
&lt;/h2&gt;

&lt;p&gt;Next, define a new parameter group for the green environment:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;resource "aws_db_parameter_group" "mysql_8_0_param_group" {
  name        = "rds-bg-demo-8-0-db-pg"
  family      = "mysql8.0"
  description = "Parameter group for MySQL 8.0"
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  4. Create Blue/Green Deployment.
&lt;/h2&gt;

&lt;p&gt;Now head to the AWS Console and navigate to your RDS cluster:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Click "Create Blue/Green Deployment"&lt;/li&gt;
&lt;li&gt;Name your deployment appropriately.&lt;/li&gt;
&lt;li&gt;Update Engine version to 8.0.x and review instance, storage, and network configurations.&lt;/li&gt;
&lt;li&gt;Click Next, review your settings and pricing, then click Create.&lt;/li&gt;
&lt;li&gt;AWS will now provision a new green environment running MySQL 8.0, cloned from your 5.7 setup.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy15t7vlblgw5xdom4yka.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy15t7vlblgw5xdom4yka.png" alt=" " width="800" height="326"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Name your blue/green deployment:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fc87i0ilbdzf1yy38rz8u.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fc87i0ilbdzf1yy38rz8u.png" alt=" " width="800" height="220"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Set Engine configurations as recommended below:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmoeb4pysejg515of4l9v.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmoeb4pysejg515of4l9v.png" alt=" " width="800" height="213"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Update Instance configuration as required:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8jemfs4zyz6ju3e1wuw0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8jemfs4zyz6ju3e1wuw0.png" alt=" " width="800" height="213"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Similarly update the Storage as required for Green environment and click on Next:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2ske7yf482h4wam1fkx5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2ske7yf482h4wam1fkx5.png" alt=" " width="800" height="377"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Review your settings for Green Cluster:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzecqhrcsocmftj7vohwf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzecqhrcsocmftj7vohwf.png" alt=" " width="800" height="413"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;After reviewing settings and cost click on Create:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqqyilbarsd1i4ipdwzbc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqqyilbarsd1i4ipdwzbc.png" alt=" " width="800" height="180"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It will go into provisioning state:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4qb8iy0hq9myszobhqkg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4qb8iy0hq9myszobhqkg.png" alt=" " width="800" height="244"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Once provisioning is complete, you'll see Green Cluster Upgrading:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F59klfa1zwqppxxbwem7y.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F59klfa1zwqppxxbwem7y.png" alt=" " width="800" height="158"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Verify Green Environment
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Once provisioning completes:&lt;/li&gt;
&lt;li&gt;Open the new Green Cluster&lt;/li&gt;
&lt;li&gt;Copy its hostname&lt;/li&gt;
&lt;li&gt;Update the hostname in your application (temporarily) to verify functionality&lt;/li&gt;
&lt;li&gt;Test the DB with your existing workloads and ensure compatibility&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdpr1t80aml5eaor2zba8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdpr1t80aml5eaor2zba8.png" alt=" " width="800" height="161"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  6. Switchover to Green
&lt;/h2&gt;

&lt;p&gt;After validation:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Click "Switch over" in the AWS Console.&lt;/li&gt;
&lt;li&gt;Review the switchover summary and timeout settings.&lt;/li&gt;
&lt;li&gt;Click Switch over.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3d3nab6ee2939kzyyl22.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3d3nab6ee2939kzyyl22.png" alt=" " width="800" height="212"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Review switchover summary, update Timeout setting if necessary &amp;amp; hit Switch over:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1edl2lyct5s3rgthu85h.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1edl2lyct5s3rgthu85h.png" alt=" " width="800" height="357"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0hropijg53943n17phsf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0hropijg53943n17phsf.png" alt=" " width="800" height="119"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Post-switchover:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The Green environment adopts the original DB identifier.&lt;/li&gt;
&lt;li&gt;The Blue environment is renamed with a -old1 suffix.&lt;/li&gt;
&lt;li&gt;The hostname of the upgraded instance matches the original.&lt;/li&gt;
&lt;li&gt;After successful verification, Switch over to the Green environment:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fam25189tbwevo08nfkny.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fam25189tbwevo08nfkny.png" alt=" " width="800" height="192"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3v1mb41hd8rtg1d48gvv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3v1mb41hd8rtg1d48gvv.png" alt=" " width="800" height="253"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The DB Hostname of upgraded cluster will revert to the original hostname as it was before this Blue/Green deployemnt creation. If you updated hostname in your environment for testing before switchover, make sure to update/revert to current hostname of upgraded db identifier.&lt;/p&gt;

&lt;h2&gt;
  
  
  7. Cleanup Blue/Green Deployment
&lt;/h2&gt;

&lt;p&gt;After a successful switchover:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Delete the Blue/Green deployment from the Console.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fngonoiiajjq98yflv84w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fngonoiiajjq98yflv84w.png" alt=" " width="800" height="179"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Manually delete the old cluster (if no longer needed).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcwr9u2qi3jsq5km09oel.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcwr9u2qi3jsq5km09oel.png" alt=" " width="800" height="148"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  8. Update Terraform
&lt;/h2&gt;

&lt;p&gt;Now update your existing terraform only with engine_version = "8.0.42" or whatever your upgraded RDS Cluster has and parameter_group_name value to custom parameter group name as we created in Step 3. Terraform will look like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;resource "aws_db_instance" "dev" {
  identifier                  = "rds-bg-dev-db"
  allocated_storage           = 30
  engine                      = "mysql"
  engine_version              = "8.0.42"
  instance_class              = var.instance_class
  manage_master_user_password = true
  username                    = var.username
  vpc_security_group_ids      = [module.rds_sg.security_group_id]
  availability_zone           = var.availability_zone
  deletion_protection         = true
  parameter_group_name        = aws_db_parameter_group.mysql_8_0_param_group.name
  backup_retention_period     = 7
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  9. Terraform apply
&lt;/h2&gt;

&lt;p&gt;Now run &lt;code&gt;terraform apply&lt;/code&gt; and it will only update the parameter group to your RDS Cluster.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fi0c3r3uwaz66rvakjg99.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fi0c3r3uwaz66rvakjg99.png" alt=" " width="800" height="260"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;By following this method, you can safely upgrade your RDS MySQL 5.7 instance to 8.0 using AWS's Blue/Green deployment - while continuing to manage your infrastructure declaratively using Terraform.&lt;br&gt;
This approach provides the best of both worlds: cloud-native orchestration and infrastructure-as-code consistency.&lt;/p&gt;

</description>
      <category>aws</category>
      <category>terraform</category>
      <category>infrastructureascode</category>
      <category>cloud</category>
    </item>
  </channel>
</rss>
