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
| <aname="input_ecr_repository_lifecycle_policy"></a> [ecr\_repository\_lifecycle\_policy](#input\_ecr\_repository\_lifecycle\_policy)| The policy document. This is a JSON formatted string. See more details about [Policy Parameters](http://docs.aws.amazon.com/AmazonECR/latest/userguide/LifecyclePolicies.html#lifecycle_policy_parameters) in the official AWS docs |`string`|`null`| no |
121
121
| <aname="input_ecs_access_policy_enabled"></a> [ecs\_access\_policy\_enabled](#input\_ecs\_access\_policy\_enabled)| Defines if the ecs tasks should have the ecs access policy |`bool`|`false`| no |
122
+
| <aname="input_elasticsearch_data_stream_enabled"></a> [elasticsearch\_data\_stream\_enabled](#input\_elasticsearch\_data\_stream\_enabled)| Defines whether there will be a elasticsearch data\_stream, index template, index lifecycle policy created |`bool`|`true`| no |
122
123
| <aname="input_elasticsearch_host"></a> [elasticsearch\_host](#input\_elasticsearch\_host)| Defines the elasticsearch host to query for logs |`string`|`null`| no |
123
124
| <aname="input_elasticsearch_index_template"></a> [elasticsearch\_index\_template](#input\_elasticsearch\_index\_template)| This defines the properties used within the index template (Only used if create\_elasticsearch\_data\_stream is true) | <pre>object({<br/> additional_fields = map(any)<br/> name = string<br/> priority = number<br/> node_name = string<br/> number_of_shards = number<br/> number_of_replicas = number<br/> })</pre> | <pre>{<br/> "additional_fields": {},<br/> "name": "",<br/> "node_name": "*",<br/> "number_of_replicas": 1,<br/> "number_of_shards": 1,<br/> "priority": 250<br/>}</pre> | no |
124
125
| <aname="input_elasticsearch_lifecycle_policy"></a> [elasticsearch\_lifecycle\_policy](#input\_elasticsearch\_lifecycle\_policy)| This defines the properties used within the index lifecycle management policy (Only used if create\_elasticsearch\_data\_stream is true) | <pre>object({<br/> delete_phase_min_age = string<br/> hot_phase_max_primary_shard_size = string<br/> hot_phase_max_age = optional(string)<br/> warm_phase_min_age = string<br/> warm_phase_number_of_replicas = number<br/> })</pre> | <pre>{<br/> "delete_phase_min_age": "28d",<br/> "hot_phase_max_primary_shard_size": "10gb",<br/> "warm_phase_min_age": "0d",<br/> "warm_phase_number_of_replicas": 0<br/>}</pre> | no |
0 commit comments