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
Examples codified under the [`examples`](https://github.com/terraform-aws-modules/terraform-aws-opensearch/tree/master/examples) are intended to give users references for how to use the module(s) as well as testing/validating changes to the source code of the module. If contributing to the project, please be sure to make any appropriate updates to the relevant examples to allow maintainers to test your changes and to keep the examples up to date for users. Thank you!
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
30
142
## Requirements
@@ -95,7 +207,7 @@ No modules.
95
207
| <aname="input_enable_access_policy"></a> [enable\_access\_policy](#input\_enable\_access\_policy)| Determines whether an access policy will be applied to the domain |`bool`|`true`| no |
96
208
| <aname="input_encrypt_at_rest"></a> [encrypt\_at\_rest](#input\_encrypt\_at\_rest)| Configuration block for encrypting at rest |`any`| <pre>{<br> "enabled": true<br>}</pre> | no |
97
209
| <aname="input_engine_version"></a> [engine\_version](#input\_engine\_version)| Version of the OpenSearch engine to use |`string`|`null`| no |
98
-
| <aname="input_log_publishing_options"></a> [log\_publishing\_options](#input\_log\_publishing\_options)| Configuration block for publishing slow and application logs to CloudWatch Logs. This block can be declared multiple times, for each log\_type, within the same resource |`any`| <pre>[<br> {<br> "log_type": "INDEX_SLOW_LOGS"<br> },<br> {<br> "log_type": "SEARCH_SLOW_LOGS"<br> },<br> {<br> "log_type": "AUDIT_LOGS"<br> }<br>]</pre> | no |
210
+
| <aname="input_log_publishing_options"></a> [log\_publishing\_options](#input\_log\_publishing\_options)| Configuration block for publishing slow and application logs to CloudWatch Logs. This block can be declared multiple times, for each log\_type, within the same resource |`any`| <pre>[<br> {<br> "log_type": "INDEX_SLOW_LOGS"<br> },<br> {<br> "log_type": "SEARCH_SLOW_LOGS"<br> }<br>]</pre> | no |
99
211
| <aname="input_node_to_node_encryption"></a> [node\_to\_node\_encryption](#input\_node\_to\_node\_encryption)| Configuration block for node-to-node encryption options |`any`| <pre>{<br> "enabled": true<br>}</pre> | no |
100
212
| <aname="input_off_peak_window_options"></a> [off\_peak\_window\_options](#input\_off\_peak\_window\_options)| Configuration to add Off Peak update options |`any`| <pre>{<br> "enabled": true,<br> "off_peak_window": {<br> "hours": 7<br> }<br>}</pre> | no |
101
213
| <aname="input_outbound_connections"></a> [outbound\_connections](#input\_outbound\_connections)| Map of AWS OpenSearch outbound connections to create |`any`|`{}`| no |
Please note - the examples provided serve two primary means:
4
+
5
+
1. Show users working examples of the various ways in which the module can be configured and features supported
6
+
2. A means of testing/validating module changes
7
+
8
+
Please do not mistake the examples provided as "best practices". It is up to users to consult the AWS service documentation for best practices, usage recommendations, etc.
0 commit comments