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
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -278,7 +278,7 @@ Users have the ability to:
278
278
| <aname="input_identifier"></a> [identifier](#input\_identifier)| The name of the RDS instance |`string`| n/a | yes |
279
279
| <aname="input_instance_class"></a> [instance\_class](#input\_instance\_class)| The instance type of the RDS instance |`string`|`null`| no |
280
280
| <aname="input_instance_use_identifier_prefix"></a> [instance\_use\_identifier\_prefix](#input\_instance\_use\_identifier\_prefix)| Determines whether to use `identifier` as is or create a unique identifier beginning with `identifier` as the specified prefix |`bool`|`false`| no |
281
-
| <aname="input_iops"></a> [iops](#input\_iops)| The amount of provisioned IOPS. Setting this implies a storage\_type of 'io1' |`number`|`null`| no |
281
+
| <aname="input_iops"></a> [iops](#input\_iops)| The amount of provisioned IOPS. Setting this implies a storage\_type of 'io1' or `gp3`. See `notes` for limitations regarding this variable for `gp3`|`number`|`null`| no |
282
282
| <aname="input_kms_key_id"></a> [kms\_key\_id](#input\_kms\_key\_id)| The ARN for the KMS encryption key. If creating an encrypted replica, set this to the destination KMS ARN. If storage\_encrypted is set to true and kms\_key\_id is not specified the default KMS key created in your account will be used. Be sure to use the full ARN, not a key alias. |`string`|`null`| no |
283
283
| <aname="input_license_model"></a> [license\_model](#input\_license\_model)| License model information for this DB instance. Optional, but required for some DB engines, i.e. Oracle SE1 |`string`|`null`| no |
284
284
| <aname="input_maintenance_window"></a> [maintenance\_window](#input\_maintenance\_window)| The window to perform maintenance in. Syntax: 'ddd:hh24:mi-ddd:hh24:mi'. Eg: 'Mon:00:00-Mon:03:00' |`string`|`null`| no |
@@ -315,7 +315,7 @@ Users have the ability to:
315
315
| <aname="input_skip_final_snapshot"></a> [skip\_final\_snapshot](#input\_skip\_final\_snapshot)| Determines whether a final DB snapshot is created before the DB instance is deleted. If true is specified, no DBSnapshot is created. If false is specified, a DB snapshot is created before the DB instance is deleted |`bool`|`false`| no |
316
316
| <aname="input_snapshot_identifier"></a> [snapshot\_identifier](#input\_snapshot\_identifier)| Specifies whether or not to create this database from a snapshot. This correlates to the snapshot ID you'd find in the RDS console, e.g: rds:production-2015-06-26-06-05|`string`|`null`| no |
317
317
| <aname="input_storage_encrypted"></a> [storage\_encrypted](#input\_storage\_encrypted)| Specifies whether the DB instance is encrypted |`bool`|`true`| no |
318
-
| <aname="input_storage_throughput"></a> [storage\_throughput](#input\_storage\_throughput)| Storage throughput value for the DB instance. This setting applies only to the `gp3` storage type.|`number`|`null`| no |
318
+
| <aname="input_storage_throughput"></a> [storage\_throughput](#input\_storage\_throughput)| Storage throughput value for the DB instance. See `notes` for limitations regarding this variable for `gp3`|`number`|`null`| no |
319
319
| <aname="input_storage_type"></a> [storage\_type](#input\_storage\_type)| One of 'standard' (magnetic), 'gp2' (general purpose SSD), 'gp3' (new generation of general purpose SSD), or 'io1' (provisioned IOPS SSD). The default is 'io1' if iops is specified, 'gp2' if not. If you specify 'io1' or 'gp3' , you must also include a value for the 'iops' parameter |`string`|`null`| no |
320
320
| <aname="input_subnet_ids"></a> [subnet\_ids](#input\_subnet\_ids)| A list of VPC subnet IDs |`list(string)`|`[]`| no |
321
321
| <aname="input_tags"></a> [tags](#input\_tags)| A mapping of tags to assign to all resources |`map(string)`|`{}`| no |
Copy file name to clipboardExpand all lines: variables.tf
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ variable "storage_type" {
22
22
}
23
23
24
24
variable"storage_throughput" {
25
-
description="Storage throughput value for the DB instance. This setting applies only to the `gp3` storage type."
25
+
description="Storage throughput value for the DB instance. See `notes` for limitations regarding this variable for `gp3`"
26
26
type=number
27
27
default=null
28
28
}
@@ -164,7 +164,7 @@ variable "multi_az" {
164
164
}
165
165
166
166
variable"iops" {
167
-
description="The amount of provisioned IOPS. Setting this implies a storage_type of 'io1'"
167
+
description="The amount of provisioned IOPS. Setting this implies a storage_type of 'io1' or `gp3`. See `notes` for limitations regarding this variable for `gp3`"
0 commit comments