Skip to content

Commit

Permalink
[#227] Revert terraform fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
nvminhtue committed Jan 9, 2024
1 parent 9a4289e commit 2ebab07
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/generators/addons/aws/modules/rds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,27 +25,27 @@ const rdsVariablesContent = dedent`
variable "rds_database_name" {
description = "RDS database name"
type = string
type = string
}
variable "rds_username" {
description = "RDS username"
type = string
type = string
}
variable "rds_password" {
description = "RDS password"
type = string
type = string
}
variable "rds_autoscaling_min_capacity" {
description = "Minimum number of RDS read replicas when autoscaling is enabled"
type = number
type = number
}
variable "rds_autoscaling_max_capacity" {
description = "Maximum number of RDS read replicas when autoscaling is enabled"
type = number
type = number
}`;

const rdsModuleContent = dedent`
Expand Down

0 comments on commit 2ebab07

Please sign in to comment.