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: aws-aurora-mysql/README.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,8 @@ module "db" {
44
44
| db\_parameters | Instance params you can set. [Doc](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Reference.html#AuroraMySQL.Reference.Parameters.Instance)| list |`<list>`| no |
45
45
| env | Env for tagging and naming. See [doc](../README.md#consistent-tagging). | string | n/a | yes |
46
46
| iam\_database\_authentication\_enabled || string |`"false"`| no |
47
-
| ingress\_cidr\_blocks | A list of CIDR blocks that should be allowed to communicate with this Aurora cluster. | list | n/a | yes |
47
+
| ingress\_cidr\_blocks | A list of CIDR blocks that should be allowed to communicate with this Aurora cluster. | list(string) |`[]`| no |
48
+
| ingress\_security\_groups | A list of security groups that should be allowed to communicate with this Aurora cluster. | list(string) |`[]`| no |
48
49
| instance\_class | See valid instance types [here](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Managing.Performance.html)| string |`"db.t2.small"`| no |
49
50
| instance\_count | Number of instances to create in this cluster. | string |`"1"`| no |
50
51
| kms\_key\_id | If provided, storage will be encrypted with this key, otherwise an AWS-managed key is used. (Encryption is always on). | string |`""`| no |
Copy file name to clipboardexpand all lines: aws-aurora-postgres/README.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,8 @@ module "db" {
44
44
| engine\_version | The version of Postgres to use. | string |`"10"`| no |
45
45
| env | Env for tagging and naming. See [doc](../README.md#consistent-tagging). | string | n/a | yes |
46
46
| iam\_database\_authentication\_enabled || string |`"false"`| no |
47
-
| ingress\_cidr\_blocks | A list of CIDR blocks that should be allowed to communicate with this Aurora cluster. | list | n/a | yes |
47
+
| ingress\_cidr\_blocks | A list of CIDR blocks that should be allowed to communicate with this Aurora cluster. | list(string) |`[]`| no |
48
+
| ingress\_security\_groups | A list of security groups that should be allowed to communicate with this Aurora cluster. | list(string) |`[]`| no |
48
49
| instance\_class | See valid instance types [here](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Managing.html)| string |`"db.r4.large"`| no |
49
50
| instance\_count | Number of instances to create in this cluster. | string |`"1"`| no |
50
51
| kms\_key\_id | If provided, storage will be encrypted with this key, otherwise an AWS-managed key is used. (Encryption is always on). | string |`""`| no |
Copy file name to clipboardexpand all lines: aws-aurora/README.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,8 @@ This is a low-level module for creating AWS Aurora clusters. We strongly reccome
19
19
| engine\_version || string | n/a | yes |
20
20
| env | Env for tagging and naming. See [doc](../README.md#consistent-tagging). | string | n/a | yes |
21
21
| iam\_database\_authentication\_enabled || string |`"true"`| no |
22
-
| ingress\_cidr\_blocks || list | n/a | yes |
22
+
| ingress\_cidr\_blocks | A list of CIDR blocks that should be allowed to communicate with this Aurora cluster. | list(string) |`[]`| no |
23
+
| ingress\_security\_groups | A list of security groups that should be allowed to communicate with this Aurora cluster. | list(string) |`[]`| no |
23
24
| instance\_class || string |`"db.t2.small"`| no |
24
25
| instance\_count || string |`"1"`| no |
25
26
| kms\_key\_id | If supplied, RDS will use this key to encrypt data at rest. Empty string means that RDS will use an AWS-managed key. Encryption is always on with this module. | string |`""`| no |
0 commit comments