diff --git a/src/generators/addons/aws/modules/rds.ts b/src/generators/addons/aws/modules/rds.ts index 332a9db7..4135349f 100644 --- a/src/generators/addons/aws/modules/rds.ts +++ b/src/generators/addons/aws/modules/rds.ts @@ -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`