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
|[aws_iam_policy_document.monitoring_rds_assume_role](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/iam_policy_document)| data source |
293
294
|[aws_partition.current](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/partition)| data source |
294
295
|[aws_service_principal.monitoring_rds](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/service_principal)| data source |
@@ -394,8 +395,9 @@ No modules.
394
395
| <aname="input_s3_import"></a> [s3\_import](#input\_s3\_import)| Configuration map used to restore from a Percona Xtrabackup in S3 (only MySQL is supported) | <pre>object({<br/> bucket_name = string<br/> bucket_prefix = optional(string)<br/> ingestion_role = string<br/> source_engine_version = string<br/> })</pre> |`null`| no |
395
396
| <aname="input_scaling_configuration"></a> [scaling\_configuration](#input\_scaling\_configuration)| Map of nested attributes with scaling properties. Only valid when `engine_mode` is set to `serverless`| <pre>object({<br/> auto_pause = optional(bool)<br/> max_capacity = optional(number)<br/> min_capacity = optional(number)<br/> seconds_before_timeout = optional(number)<br/> seconds_until_auto_pause = optional(number)<br/> timeout_action = optional(string)<br/> })</pre> |`null`| no |
396
397
| <aname="input_security_group_description"></a> [security\_group\_description](#input\_security\_group\_description)| The description of the security group. If value is set to empty string it will contain cluster name in the description |`string`|`null`| no |
398
+
| <aname="input_security_group_egress_rules"></a> [security\_group\_egress\_rules](#input\_security\_group\_egress\_rules)| Map of security group egress rules to add to the security group created | <pre>map(object({<br/> name = optional(string)<br/><br/> cidr_ipv4 = optional(string)<br/> cidr_ipv6 = optional(string)<br/> description = optional(string)<br/> from_port = optional(number)<br/> ip_protocol = optional(string, "tcp")<br/> prefix_list_id = optional(string)<br/> referenced_security_group_id = optional(string)<br/> region = optional(string)<br/> tags = optional(map(string), {})<br/> to_port = optional(number)<br/> }))</pre> |`{}`| no |
399
+
| <aname="input_security_group_ingress_rules"></a> [security\_group\_ingress\_rules](#input\_security\_group\_ingress\_rules)| Map of security group ingress rules to add to the security group created | <pre>map(object({<br/> name = optional(string)<br/><br/> cidr_ipv4 = optional(string)<br/> cidr_ipv6 = optional(string)<br/> description = optional(string)<br/> from_port = optional(number)<br/> ip_protocol = optional(string, "tcp")<br/> prefix_list_id = optional(string)<br/> referenced_security_group_id = optional(string)<br/> region = optional(string)<br/> tags = optional(map(string), {})<br/> to_port = optional(number)<br/> }))</pre> |`{}`| no |
397
400
| <aname="input_security_group_name"></a> [security\_group\_name](#input\_security\_group\_name)| The security group name. Default value is (`var.name`) |`string`|`""`| no |
398
-
| <aname="input_security_group_rules"></a> [security\_group\_rules](#input\_security\_group\_rules)| Map of security group rules to add to the cluster security group created |`any`|`{}`| no |
399
401
| <aname="input_security_group_tags"></a> [security\_group\_tags](#input\_security\_group\_tags)| Additional tags for the security group |`map(string)`|`{}`| no |
400
402
| <aname="input_security_group_use_name_prefix"></a> [security\_group\_use\_name\_prefix](#input\_security\_group\_use\_name\_prefix)| Determines whether the security group name (`var.name`) is used as a prefix |`bool`|`true`| no |
401
403
| <aname="input_serverlessv2_scaling_configuration"></a> [serverlessv2\_scaling\_configuration](#input\_serverlessv2\_scaling\_configuration)| Map of nested attributes with serverless v2 scaling properties. Only valid when `engine_mode` is set to `provisioned`| <pre>object({<br/> max_capacity = number<br/> min_capacity = optional(number)<br/> seconds_until_auto_pause = optional(number)<br/> })</pre> |`null`| no |
Copy file name to clipboardExpand all lines: docs/UPGRADE-10.0.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ If you find a bug, please open an issue with supporting configuration to reprodu
9
9
- AWS provider `v6.18` is now minimum supported version
10
10
- The underlying `aws_security_group_rule` resources has been replaced with `aws_vpc_security_group_ingress_rule` and `aws_vpc_security_group_egress_rule` to allow for more flexibility in defining security group rules.
11
11
-`master_password` is no longer supported and only the write-only equivalent is supported (`master_password_wo` and `master_password_wo_version`) ([#513](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/pull/513))
12
+
-`security_group_rules` has been split into `security_group_ingress_rules` and `security_group_egress_rules` to better match the AWS API and allow for more flexibility in defining security group rules
0 commit comments