Skip to content

Commit 6793b3b

Browse files
authored
Merge pull request #30 from lgallard/release/0.7.0
Release 0.7.0
2 parents 2f8f15e + 5156008 commit 6793b3b

File tree

2 files changed

+21
-7
lines changed

2 files changed

+21
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
## 0.6.0 (October 28, 2020)
1+
## 0.7.0 (January 8, 2021)
2+
3+
ENHANCEMENTS:
4+
5+
* Add retention configuration variable for Cloudwatch log group (thanks @elpaquete)
6+
7+
## 0.6.1 (October 28, 2020)
28

39
FIXES:
410

README.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,14 @@ module "aws_es" {
9696
}
9797
9898
```
99+
100+
## Requirements
101+
102+
| Name | Version |
103+
|------|---------|
104+
| terraform | >= 0.12.9 |
105+
| aws | >= 2.69.0 |
106+
99107
## Providers
100108

101109
| Name | Version |
@@ -111,19 +119,19 @@ module "aws_es" {
111119
| advanced\_security\_options | Options for fine-grained access control | `any` | `{}` | no |
112120
| advanced\_security\_options\_enabled | Whether advanced security is enabled (Forces new resource) | `bool` | `false` | no |
113121
| 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 |
117125
| cluster\_config | Cluster configuration of the domain | `map` | `{}` | no |
118126
| cluster\_config\_availability\_zone\_count | Number of Availability Zones for the domain to use with | `number` | `3` | no |
119127
| cluster\_config\_dedicated\_master\_count | Number of dedicated master nodes in the cluster | `number` | `3` | no |
120128
| cluster\_config\_dedicated\_master\_enabled | Indicates whether dedicated master nodes are enabled for the cluster | `bool` | `true` | no |
121129
| cluster\_config\_dedicated\_master\_type | Instance type of the dedicated master nodes in the cluster | `string` | `"r5.large.elasticsearch"` | no |
122130
| cluster\_config\_instance\_count | Number of instances in the cluster | `number` | `3` | no |
123131
| 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 |
125133
| 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 |
127135
| cluster\_config\_zone\_awareness\_enabled | Indicates whether zone awareness is enabled. To enable awareness with three Availability Zones | `bool` | `false` | no |
128136
| cognito\_options | Options for Amazon Cognito Authentication for Kibana | `map` | `{}` | no |
129137
| cognito\_options\_enabled | Specifies whether Amazon Cognito authentication with Kibana is enabled or not | `bool` | `false` | no |
@@ -155,7 +163,7 @@ module "aws_es" {
155163
| 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 |
156164
| tags | A mapping of tags to assign to the resource | `map` | `{}` | no |
157165
| 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 |
159167
| vpc\_options | VPC related options, see below. Adding or removing this configuration forces a new resource | `map` | `{}` | no |
160168
| 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 |
161169
| vpc\_options\_subnet\_ids | List of VPC Subnet IDs for the Elasticsearch domain endpoints to be created in | `list` | `[]` | no |

0 commit comments

Comments
 (0)