diff --git a/modules/cloudsql-instance/README.md b/modules/cloudsql-instance/README.md
index 2218bc0a39..ce633fa68d 100644
--- a/modules/cloudsql-instance/README.md
+++ b/modules/cloudsql-instance/README.md
@@ -209,8 +209,8 @@ module "db" {
| [disk_autoresize_limit](variables.tf#L108) | The maximum size to which storage capacity can be automatically increased. The default value is 0, which specifies that there is no limit. | number
| | 0
|
| [disk_size](variables.tf#L114) | Disk size in GB. Set to null to enable autoresize. | number
| | null
|
| [disk_type](variables.tf#L120) | The type of data disk: `PD_SSD` or `PD_HDD`. | string
| | "PD_SSD"
|
-| [edition](variables.tf#L132) | The edition of the instance, can be ENTERPRISE or ENTERPRISE_PLUS. | string
| | "ENTERPRISE"
|
-| [encryption_key_name](variables.tf#L126) | The full path to the encryption key used for the CMEK disk encryption of the primary instance. | string
| | null
|
+| [edition](variables.tf#L126) | The edition of the instance, can be ENTERPRISE or ENTERPRISE_PLUS. | string
| | "ENTERPRISE"
|
+| [encryption_key_name](variables.tf#L132) | The full path to the encryption key used for the CMEK disk encryption of the primary instance. | string
| | null
|
| [flags](variables.tf#L138) | Map FLAG_NAME=>VALUE for database-specific tuning. | map(string)
| | null
|
| [insights_config](variables.tf#L144) | Query Insights configuration. Defaults to null which disables Query Insights. | object({…})
| | null
|
| [ipv4_enabled](variables.tf#L155) | Add a public IP address to database instance. | bool
| | false
|
diff --git a/modules/cloudsql-instance/variables.tf b/modules/cloudsql-instance/variables.tf
index cb258ec8ab..0bb58cd22f 100644
--- a/modules/cloudsql-instance/variables.tf
+++ b/modules/cloudsql-instance/variables.tf
@@ -123,18 +123,18 @@ variable "disk_type" {
default = "PD_SSD"
}
-variable "encryption_key_name" {
- description = "The full path to the encryption key used for the CMEK disk encryption of the primary instance."
- type = string
- default = null
-}
-
variable "edition" {
description = "The edition of the instance, can be ENTERPRISE or ENTERPRISE_PLUS."
type = string
default = "ENTERPRISE"
}
+variable "encryption_key_name" {
+ description = "The full path to the encryption key used for the CMEK disk encryption of the primary instance."
+ type = string
+ default = null
+}
+
variable "flags" {
description = "Map FLAG_NAME=>VALUE for database-specific tuning."
type = map(string)