From 2ebab0734f79d1efb767a37691fcf3fb684109ad Mon Sep 17 00:00:00 2001 From: nvminhtue Date: Tue, 9 Jan 2024 22:36:40 +0700 Subject: [PATCH] [#227] Revert terraform fmt --- src/generators/addons/aws/modules/rds.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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`