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: README.md
+14-6Lines changed: 14 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -96,6 +96,14 @@ module "aws_es" {
96
96
}
97
97
98
98
```
99
+
100
+
## Requirements
101
+
102
+
| Name | Version |
103
+
|------|---------|
104
+
| terraform | >= 0.12.9 |
105
+
| aws | >= 2.69.0 |
106
+
99
107
## Providers
100
108
101
109
| Name | Version |
@@ -111,19 +119,19 @@ module "aws_es" {
111
119
| advanced\_security\_options | Options for fine-grained access control |`any`|`{}`| no |
112
120
| advanced\_security\_options\_enabled | Whether advanced security is enabled (Forces new resource) |`bool`|`false`| no |
113
121
| advanced\_security\_options\_internal\_user\_database\_enabled | Whether the internal user database is enabled. If not set, defaults to false by the AWS API. |`bool`|`false`| no |
114
-
| advanced\_security\_options\_master\_user\_arn | ARN for the master user. Only specify if `internal_user_database_enabled` is not set or set to `false`) |`string`|n/a|yes|
115
-
| advanced\_security\_options\_master\_user\_password | The master user's password, which is stored in the Amazon Elasticsearch Service domain's internal database. Only specify if `internal_user_database_enabled` is set to `true`. |`string`|n/a|yes|
116
-
| advanced\_security\_options\_master\_user\_username | The master user's username, which is stored in the Amazon Elasticsearch Service domain's internal database. Only specify if `internal_user_database_enabled` is set to `true`. |`string`|n/a|yes|
122
+
| advanced\_security\_options\_master\_user\_arn | ARN for the master user. Only specify if `internal_user_database_enabled` is not set or set to `false`) |`string`|`null`|no|
123
+
| advanced\_security\_options\_master\_user\_password | The master user's password, which is stored in the Amazon Elasticsearch Service domain's internal database. Only specify if `internal_user_database_enabled` is set to `true`. |`string`|`null`|no|
124
+
| advanced\_security\_options\_master\_user\_username | The master user's username, which is stored in the Amazon Elasticsearch Service domain's internal database. Only specify if `internal_user_database_enabled` is set to `true`. |`string`|`null`|no|
117
125
| cluster\_config | Cluster configuration of the domain |`map`|`{}`| no |
118
126
| cluster\_config\_availability\_zone\_count | Number of Availability Zones for the domain to use with |`number`|`3`| no |
119
127
| cluster\_config\_dedicated\_master\_count | Number of dedicated master nodes in the cluster |`number`|`3`| no |
120
128
| cluster\_config\_dedicated\_master\_enabled | Indicates whether dedicated master nodes are enabled for the cluster |`bool`|`true`| no |
121
129
| cluster\_config\_dedicated\_master\_type | Instance type of the dedicated master nodes in the cluster |`string`|`"r5.large.elasticsearch"`| no |
122
130
| cluster\_config\_instance\_count | Number of instances in the cluster |`number`|`3`| no |
123
131
| cluster\_config\_instance\_type | Instance type of data nodes in the cluster |`string`|`"r5.large.elasticsearch"`| no |
124
-
| cluster\_config\_warm\_count | The number of warm nodes in the cluster |`number`|n/a| no |
132
+
| cluster\_config\_warm\_count | The number of warm nodes in the cluster |`number`|`null`| no |
125
133
| cluster\_config\_warm\_enabled | Indicates whether to enable warm storage |`bool`|`false`| no |
126
-
| cluster\_config\_warm\_type | The instance type for the Elasticsearch cluster's warm nodes |`string`|n/a| no |
134
+
| cluster\_config\_warm\_type | The instance type for the Elasticsearch cluster's warm nodes |`string`|`null`| no |
127
135
| cluster\_config\_zone\_awareness\_enabled | Indicates whether zone awareness is enabled. To enable awareness with three Availability Zones |`bool`|`false`| no |
128
136
| cognito\_options | Options for Amazon Cognito Authentication for Kibana |`map`|`{}`| no |
129
137
| cognito\_options\_enabled | Specifies whether Amazon Cognito authentication with Kibana is enabled or not |`bool`|`false`| no |
@@ -155,7 +163,7 @@ module "aws_es" {
155
163
| snapshot\_options\_automated\_snapshot\_start\_hour | Hour during which the service takes an automated daily snapshot of the indices in the domain |`number`|`0`| no |
156
164
| tags | A mapping of tags to assign to the resource |`map`|`{}`| no |
157
165
| timeouts | Timeouts map. |`map`|`{}`| no |
158
-
| timeouts\_update | How long to wait for updates. |`string`|n/a| no |
166
+
| timeouts\_update | How long to wait for updates. |`string`|`null`| no |
159
167
| vpc\_options | VPC related options, see below. Adding or removing this configuration forces a new resource |`map`|`{}`| no |
160
168
| vpc\_options\_security\_group\_ids | List of VPC Security Group IDs to be applied to the Elasticsearch domain endpoints. If omitted, the default Security Group for the VPC will be used |`list`|`[]`| no |
161
169
| vpc\_options\_subnet\_ids | List of VPC Subnet IDs for the Elasticsearch domain endpoints to be created in |`list`|`[]`| no |
0 commit comments