diff --git a/README.md b/README.md
index 7b42917..b15160d 100644
--- a/README.md
+++ b/README.md
@@ -86,7 +86,6 @@ such as extended backups, user management, and autoscaling.
| [port](#input\_port) | The port on which the DB accepts connections. | `number` | `3306` | no |
| [preferred\_backup\_window](#input\_preferred\_backup\_window) | The daily time range (in UTC) during which automated backups are created if they are enabled. | `string` | `"00:00-02:30"` | no |
| [preferred\_maintenance\_window](#input\_preferred\_maintenance\_window) | The weekly time range during which system maintenance can occur, in (UTC). | `string` | `"Mon:03:00-Mon:04:30"` | no |
-| [storage\_type](#input\_storage\_type) | Storage type. | `string` | `"aurora"` | no |
| [tags](#input\_tags) | Tags to add to the AWS RDS Cluster Instance. | `map(any)` | `{}` | no |
| [vpc\_security\_group\_ids\_rds\_cluster](#input\_vpc\_security\_group\_ids\_rds\_cluster) | List of VPC security groups to associate with the RDS Proxy. | `list(string)` | `null` | no |
| [vpc\_security\_group\_ids\_rds\_proxy](#input\_vpc\_security\_group\_ids\_rds\_proxy) | List of VPC security groups to associate with the RDS Proxy. | `list(string)` | `null` | no |
diff --git a/modules/rds_cluster/README.md b/modules/rds_cluster/README.md
index 1ac3eda..a82e7da 100644
--- a/modules/rds_cluster/README.md
+++ b/modules/rds_cluster/README.md
@@ -34,7 +34,6 @@
| [skip\_final\_snapshot](#input\_skip\_final\_snapshot) | Determines whether a final DB snapshot is created before the DB cluster is deleted. | `bool` | `false` | no |
| [source\_region](#input\_source\_region) | The source region for an encrypted replica DB cluster. | `string` | `null` | no |
| [storage\_encrypted](#input\_storage\_encrypted) | Specifies whether the DB cluster is encrypted. | `bool` | `true` | no |
-| [storage\_type](#input\_storage\_type) | Specifies the storage type to be associated with the DB cluster. | `string` | `null` | no |
| [tags](#input\_tags) | Tags to add to the AWS RDS Cluster. | `map(any)` | `{}` | no |
| [vpc\_security\_group\_ids](#input\_vpc\_security\_group\_ids) | List of VPC security groups to associate with the Cluster | `list(string)` | `null` | no |
@@ -56,7 +55,7 @@
## Resources
- resource.aws_rds_cluster.main (modules/rds_cluster/main.tf#5)
-- resource.random_password.master_password (modules/rds_cluster/main.tf#113)
-- resource.random_string.master_username (modules/rds_cluster/main.tf#107)
+- resource.random_password.master_password (modules/rds_cluster/main.tf#112)
+- resource.random_string.master_username (modules/rds_cluster/main.tf#106)
- data source.aws_availability_zones.available (modules/rds_cluster/main.tf#1)
diff --git a/modules/rds_cluster/main.tf b/modules/rds_cluster/main.tf
index 0fece61..b224ca3 100644
--- a/modules/rds_cluster/main.tf
+++ b/modules/rds_cluster/main.tf
@@ -18,7 +18,6 @@ resource "aws_rds_cluster" "main" {
iops = var.iops
kms_key_id = module.kms.key_arn
storage_encrypted = var.storage_encrypted
- storage_type = var.storage_type
# Database name
database_name = var.database_name
diff --git a/modules/rds_cluster/variables.tf b/modules/rds_cluster/variables.tf
index 4d62e6e..85a1668 100644
--- a/modules/rds_cluster/variables.tf
+++ b/modules/rds_cluster/variables.tf
@@ -176,12 +176,6 @@ variable "storage_encrypted" {
type = bool
}
-variable "storage_type" {
- default = null
- description = "Specifies the storage type to be associated with the DB cluster."
- type = string
-}
-
variable "vpc_security_group_ids" {
default = null
description = "List of VPC security groups to associate with the Cluster"
diff --git a/modules/rds_cluster_instance/README.md b/modules/rds_cluster_instance/README.md
index ebcbca9..10a74fa 100644
--- a/modules/rds_cluster_instance/README.md
+++ b/modules/rds_cluster_instance/README.md
@@ -7,7 +7,7 @@
|------|-------------|------|---------|:--------:|
| [apply\_immediately](#input\_apply\_immediately) | Specifies whether any database modifications are applied immediately, or during the next maintenance window. | `bool` | `true` | no |
| [auto\_minor\_version\_upgrade](#input\_auto\_minor\_version\_upgrade) | Indicates that minor engine upgrades will be applied automatically to the DB instance during the maintenance window. | `bool` | `false` | no |
-| [ca\_cert\_identifier](#input\_ca\_cert\_identifier) | The identifier of the CA certificate for the DB instance. | `string` | `"rds-ca-2019"` | no |
+| [ca\_cert\_identifier](#input\_ca\_cert\_identifier) | The identifier of the CA certificate for the DB instance. | `string` | `"rds-ca-rsa2048-g1"` | no |
| [cluster\_identifier](#input\_cluster\_identifier) | The cluster identifier. | `string` | n/a | yes |
| [copy\_tags\_to\_snapshot](#input\_copy\_tags\_to\_snapshot) | Copy all Cluster tags to snapshots. | `bool` | `true` | no |
| [db\_subnet\_group\_name](#input\_db\_subnet\_group\_name) | A DB subnet group to associate with this DB instance. | `string` | n/a | yes |
@@ -19,7 +19,6 @@
| [performance\_insights\_enabled](#input\_performance\_insights\_enabled) | Specifies whether Performance Insights is enabled or not. | `bool` | `true` | no |
| [performance\_insights\_retention\_period](#input\_performance\_insights\_retention\_period) | Amount of time in days to retain Performance Insights data. | `number` | `7` | no |
| [publicly\_accessible](#input\_publicly\_accessible) | Bool to control if instance is publicly accessible. | `bool` | `false` | no |
-| [storage\_type](#input\_storage\_type) | Storage type. | `string` | `"aurora"` | no |
| [tags](#input\_tags) | Tags to add to the AWS Customer Managed Key. | `map(any)` | `{}` | no |
## Outputs
diff --git a/modules/rds_cluster_instance/variables.tf b/modules/rds_cluster_instance/variables.tf
index ee6355b..168b7af 100644
--- a/modules/rds_cluster_instance/variables.tf
+++ b/modules/rds_cluster_instance/variables.tf
@@ -19,7 +19,7 @@ variable "apply_immediately" {
}
variable "ca_cert_identifier" {
- default = "rds-ca-2019"
+ default = "rds-ca-rsa2048-g1"
description = "The identifier of the CA certificate for the DB instance."
type = string
}
@@ -85,14 +85,3 @@ variable "publicly_accessible" {
description = "Bool to control if instance is publicly accessible."
type = bool
}
-
-variable "storage_type" {
- default = "aurora"
- description = "Storage type."
- type = string
-
- validation {
- condition = contains(["aurora"], var.storage_type)
- error_message = "Value must be `aurora`."
- }
-}
diff --git a/variables.tf b/variables.tf
index 86d72c1..8ce081b 100644
--- a/variables.tf
+++ b/variables.tf
@@ -193,17 +193,6 @@ variable "port" {
type = number
}
-variable "storage_type" {
- default = "aurora"
- description = "Storage type."
- type = string
-
- validation {
- condition = contains(["aurora"], var.storage_type)
- error_message = "Value must be `aurora`."
- }
-}
-
variable "vpc_security_group_ids_rds_cluster" {
default = null
description = "List of VPC security groups to associate with the RDS Proxy."