You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| <aname="input_apply_immediately"></a> [apply\_immediately](#input\_apply\_immediately)| If false changes will not be applied until next maintenance window. |`string`|`false`| no |
58
-
| <aname="input_auto_minor_version_upgrade"></a> [auto\_minor\_version\_upgrade](#input\_auto\_minor\_version\_upgrade)| Set the databases to automatically upgrade minor versions. |`bool`|`true`| no |
58
+
| <aname="input_auto_minor_version_upgrade"></a> [auto\_minor\_version\_upgrade](#input\_auto\_minor\_version\_upgrade)| Set the databases to automatically upgrade minor versions. WARNING - if this is enabled, make sure engine_version is set to a *prefix* rather that a specific version so that TF won't try to downgrade DB's that have been auto-upgraded. Docs: https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/db_instance#engine_version|`bool`|`false`| no |
59
59
| <aname="input_ca_cert_identifier"></a> [ca\_cert\_identifier](#input\_ca\_cert\_identifier)| Identifier for the certificate authority. |`string`|`"rds-ca-2019"`| no |
60
60
| <aname="input_database_name"></a> [database\_name](#input\_database\_name)| The name of the database to be created in the cluster. |`string`| n/a | yes |
61
61
| <aname="input_database_password"></a> [database\_password](#input\_database\_password)| Password for user that will be created. |`string`| n/a | yes |
62
62
| <aname="input_database_subnet_group"></a> [database\_subnet\_group](#input\_database\_subnet\_group)| The name of an existing database subnet group to use. |`string`| n/a | yes |
63
63
| <aname="input_database_username"></a> [database\_username](#input\_database\_username)| Default user to be created. |`string`| n/a | yes |
64
64
| <aname="input_db_parameters"></a> [db\_parameters](#input\_db\_parameters)| Instance params you can set. [Doc](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Reference.html#AuroraPostgreSQL.Reference.Parameters.Instance)|`list(any)`|`[]`| no |
65
-
| <aname="input_engine_version"></a> [engine\_version](#input\_engine\_version)| The version of Postgres to use. |`string`|`"10"`| no |
65
+
| <aname="input_engine_version"></a> [engine\_version](#input\_engine\_version)| The version of Postgres to use. This should be a *prefix* if auto version upgrades are enabled. (Docs: https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/db_instance#engine_version)|`string`|`"10"`| no |
66
66
| <aname="input_env"></a> [env](#input\_env)| Env for tagging and naming. See [doc](../README.md#consistent-tagging). |`string`| n/a | yes |
67
67
| <aname="input_iam_database_authentication_enabled"></a> [iam\_database\_authentication\_enabled](#input\_iam\_database\_authentication\_enabled)| n/a |`string`|`false`| no |
68
68
| <aname="input_ingress_cidr_blocks"></a> [ingress\_cidr\_blocks](#input\_ingress\_cidr\_blocks)| A list of CIDR blocks that should be allowed to communicate with this Aurora cluster. |`list(string)`|`[]`| no |
Copy file name to clipboardexpand all lines: aws-aurora-postgres/variables.tf
+3-3
Original file line number
Diff line number
Diff line change
@@ -105,7 +105,7 @@ variable "kms_key_id" {
105
105
106
106
variable"engine_version" {
107
107
type=string
108
-
description="The version of Postgres to use."
108
+
description="The version of Postgres to use. This should be a *prefix* if auto version upgrades are enabled. (Docs: https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/db_instance#engine_version)"
description="Set the databases to automatically upgrade minor versions."
131
-
default=true
130
+
description="Set the databases to automatically upgrade minor versions. WARNING - if this is enabled, make sure engine_version is set to a *prefix* rather that a specific version so that TF won't try to downgrade DB's that have been auto-upgraded. Docs: https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/db_instance#engine_version"
0 commit comments