Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Anton Babenko <anton@antonbabenko.com>
  • Loading branch information
magreenbaum and antonbabenko committed Apr 20, 2024
1 parent cacc9b0 commit 4bddf7a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions UPGRADE-6.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ With RDS now supporting the integration with SecretsManager to manage the master
### Before 5.x Example

```hcl
module "rds_before" {
module "rds" {
source = "terraform-aws-modules/rds/aws"
version = "~> 5.0"
Expand All @@ -63,7 +63,7 @@ module "rds_before" {
### After 6.x Example

```hcl
module "rds_after" {
module "rds" {
source = "terraform-aws-modules/rds/aws"
version = "~> 6.0"
Expand All @@ -90,7 +90,7 @@ resource "random_password" "master_password" {
special = false
}
module "rds_after" {
module "rds" {
source = "terraform-aws-modules/rds/aws"
version = "~> 5.0"
Expand All @@ -111,5 +111,5 @@ module "rds_after" {
A state move must be done to preserve the previously used random password. Example:

```
terraform state mv 'module.db.random_password.master_password[0]' random_password.master_password
terraform state mv 'module.rds.random_password.master_password[0]' random_password.master_password
```

0 comments on commit 4bddf7a

Please sign in to comment.