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
| at\_rest\_encryption\_enabled | Whether to enable encryption at rest. |`bool`|`false`| no |
24
23
| apply\_immediately | Whether changes should be applied immediately or during the next maintenance window. |`bool`|`true`| no |
25
-
| availability\_zone | Availability zone in which this instance should run. |`string`|`null`| no |
24
+
| at\_rest\_encryption\_enabled | Whether to enable encryption at rest. Default: false. |`bool`|`false`| no |
25
+
| availability\_zones | Availability zone in which this instance should run. |`list(string)`|`null`| no |
26
26
| engine\_version | The version of Redis to run. See [supported versions](https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/supported-engine-versions.html)|`string`|`"5.0.5"`| no |
27
27
| env | Env for tagging and naming. See [doc](../README.md#consistent-tagging). |`string`| n/a | yes |
28
28
| ingress\_security\_group\_ids | Source security groups which should be able to contact this instance. |`list(string)`| n/a | yes |
29
29
| instance\_type | The type of instance to run. See [supported node types](https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.SupportedTypes.html)|`string`|`"cache.m5.large"`| no |
30
-
|number_cache_clusters| Number of cache clusters. |`number`|1| no |
30
+
|number\_cache\_clusters| Number of cache clusters. Default 1. |`number`|`1`| no |
31
31
| owner | Owner for tagging and naming. See [doc](../README.md#consistent-tagging). |`string`| n/a | yes |
32
32
| parameter\_group\_name | Parameter group to use for this Redis cache. |`string`|`"default.redis5.0"`| no |
33
33
| port | Port to host Redis on. |`number`|`6379`| no |
@@ -36,15 +36,15 @@ a replication group with the given parameters.
36
36
| resource\_name | If not set, name will be [var.project]-[var.env]-[var.name]. |`string`|`""`| no |
37
37
| service | Service for tagging and naming. See [doc](../README.md#consistent-tagging)|`string`|`"redis"`| no |
38
38
| subnets | List of subnets to which this EC instance should be attached. They should probably be private. |`list(string)`| n/a | yes |
39
-
| transit\_encryption\_enabled | Whether to enable encryption in transit. |`bool`|`false`| no |
39
+
| transit\_encryption\_enabled | Whether to enable encryption in transit. Default: false. |`bool`|`false`| no |
40
40
| vpc\_id | VPC where the cache will be deployed. |`string`| n/a | yes |
41
41
42
42
## Outputs
43
43
44
44
| Name | Description |
45
45
|------|-------------|
46
-
| primary_endpoint_address | The endpoint of the primary node in this node group (shard). |
47
-
| configuration_endpoint_address | The configuration endpoint address to allow host discovery. |
46
+
| configuration\_endpoint\_address | The configuration endpoint address to allow host discovery. |
48
47
| port | Redis TCP port. |
48
+
| primary\_endpoint\_address | The endpoint of the primary node in this node group (shard). |
Copy file name to clipboardexpand all lines: aws-s3-public-bucket/README.md
+2
Original file line number
Diff line number
Diff line change
@@ -19,10 +19,12 @@
19
19
| bucket\_contents | Describe the data within this bucket. |`string`| n/a | yes |
20
20
| bucket\_name | The name of the bucket. Note that `-public` will be appended to `bucket_name`s that don't contain a `public` substring. This module will output the computed `bucket_name`. |`string`| n/a | yes |
21
21
| bucket\_policy | A policy to attach to this bucket. |`string`|`""`| no |
22
+
| enable\_versioning | Keep old versions of objects in this bucket. |`bool`|`true`| no |
22
23
| env | Env for tagging and naming. |`string`| n/a | yes |
23
24
| owner | Owner for tagging and naming. |`string`| n/a | yes |
24
25
| project | Project for tagging and naming. |`string`| n/a | yes |
25
26
| public\_read\_justification | Describe why this bucket must be public and what it is being used for. |`string`| n/a | yes |
27
+
| require\_tls | Require TLS to read objects from this bucket. |`bool`|`true`| no |
26
28
| service | Service for tagging and naming. |`string`| n/a | yes |
0 commit comments