Skip to content

Commit 66bca2d

Browse files
committed
pushed README.md
1 parent f6b02a4 commit 66bca2d

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<p align="center">
1515

1616
<a href="https://www.terraform.io">
17-
<img src="https://img.shields.io/badge/terraform-v0.13-green" alt="Terraform">
17+
<img src="https://img.shields.io/badge/terraform-v0.14-green" alt="Terraform">
1818
</a>
1919
<a href="LICENSE.md">
2020
<img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="Licence">
@@ -73,11 +73,11 @@ Here are examples of how you can use this module in your inventory structure:
7373
```hcl
7474
module "elasticsearch" {
7575
source = "clouddrove/elasticsearch/aws"
76-
version = "0.13.0"
76+
version = "0.14.0"
7777
name = "es"
78-
application = "clouddrove"
78+
repository = "https://registry.terraform.io/modules/clouddrove/elasticsearch/aws/0.14.0"
7979
environment = "test"
80-
label_order = ["environment", "application", "name"]
80+
label_order = ["name", "environment"]
8181
enable_iam_service_linked_role = true
8282
security_group_ids = [module.security_group.security_group_ids]
8383
subnet_ids = tolist(module.public_subnets.public_subnet_id)
@@ -105,11 +105,11 @@ Here are examples of how you can use this module in your inventory structure:
105105
```hcl
106106
module "elasticsearch" {
107107
source = "clouddrove/elasticsearch/aws"
108-
version = "0.13.0"
108+
version = "0.14.0"
109109
name = "es"
110-
application = "clouddrove"
110+
repository = "https://registry.terraform.io/modules/clouddrove/elasticsearch/aws/0.14.0"
111111
environment = "test"
112-
label_order = ["environment", "name", "application"]
112+
label_order = ["name", "environment"]
113113
domain_name = "clouddrove"
114114
enable_iam_service_linked_role = true
115115
security_group_ids = [module.security_group.security_group_ids]
@@ -143,8 +143,7 @@ Note: There are some type of instances which not support encryption and EBS opti
143143
| Name | Description | Type | Default | Required |
144144
|------|-------------|------|---------|:--------:|
145145
| advanced\_options | Key-value string pairs to specify advanced configuration options. | `map(string)` | `{}` | no |
146-
| application | Application (e.g. `cd` or `clouddrove`). | `string` | `""` | no |
147-
| attributes | Additional attributes (e.g. `1`). | `list` | `[]` | no |
146+
| attributes | Additional attributes (e.g. `1`). | `list(any)` | `[]` | no |
148147
| automated\_snapshot\_start\_hour | Hour at which automated snapshots are taken, in UTC. | `number` | `0` | no |
149148
| availability\_zone\_count | Number of Availability Zones for the domain to use. | `number` | `2` | no |
150149
| dedicated\_master\_count | Number of dedicated master nodes in the cluster. | `number` | `0` | no |
@@ -158,7 +157,7 @@ Note: There are some type of instances which not support encryption and EBS opti
158157
| enable\_iam\_service\_linked\_role | Whether to enabled service linked with role. | `bool` | `false` | no |
159158
| enable\_logs | enable logs | `bool` | `true` | no |
160159
| enabled | Set to false to prevent the module from creating any resources. | `bool` | `true` | no |
161-
| encrypt\_at\_rest\_enabled | Whether to enable encryption at rest. | `bool` | `true` | no |
160+
| encrypt\_at\_rest\_enabled | Whether to enable encryption at rest. | `bool` | `false` | no |
162161
| encryption\_enabled | Whether to enable node-to-node encryption. | `bool` | `false` | no |
163162
| enforce\_https | Whether or not to require HTTPS. | `bool` | `false` | no |
164163
| environment | Environment (e.g. `prod`, `dev`, `staging`). | `string` | `""` | no |
@@ -171,20 +170,21 @@ Note: There are some type of instances which not support encryption and EBS opti
171170
| iops | The baseline input/output (I/O) performance of EBS volumes attached to data nodes. Applicable only for the Provisioned IOPS EBS volume type. | `number` | `0` | no |
172171
| kibana\_hostname | The Host name of kibana. | `string` | `""` | no |
173172
| kms\_key\_id | The KMS key ID to encrypt the Elasticsearch domain with. If not specified, then it defaults to using the AWS/Elasticsearch service KMS key. | `string` | `""` | no |
174-
| label\_order | Label order, e.g. `name`,`application`. | `list` | `[]` | no |
173+
| label\_order | Label order, e.g. `name`,`application`. | `list(any)` | `[]` | no |
175174
| log\_publishing\_application\_cloudwatch\_log\_group\_arn | ARN of the CloudWatch log group to which log for ES\_APPLICATION\_LOGS needs to be published. | `string` | `""` | no |
176175
| log\_publishing\_application\_enabled | Specifies whether log publishing option for ES\_APPLICATION\_LOGS is enabled or not. | `bool` | `false` | no |
177176
| log\_publishing\_index\_cloudwatch\_log\_group\_arn | ARN of the CloudWatch log group to which log for INDEX\_SLOW\_LOGS needs to be published. | `string` | `""` | no |
178177
| log\_publishing\_index\_enabled | Specifies whether log publishing option for INDEX\_SLOW\_LOGS is enabled or not. | `bool` | `false` | no |
179178
| log\_publishing\_search\_cloudwatch\_log\_group\_arn | ARN of the CloudWatch log group to which log for SEARCH\_SLOW\_LOGS needs to be published. | `string` | `""` | no |
180179
| log\_publishing\_search\_enabled | Specifies whether log publishing option for SEARCH\_SLOW\_LOGS is enabled or not. | `bool` | `false` | no |
181-
| managedby | ManagedBy, eg 'CloudDrove' or 'AnmolNagpal'. | `string` | `"anmol@clouddrove.com"` | no |
180+
| managedby | ManagedBy, eg 'CloudDrove'. | `string` | `"hello@clouddrove.com"` | no |
182181
| name | Name (e.g. `app` or `cluster`). | `string` | `""` | no |
183182
| public\_enabled | Enable Elasticsearch cluster is public or not. | `bool` | `false` | no |
183+
| repository | Terraform current module repo | `string` | `"https://registry.terraform.io/modules/clouddrove/elasticsearch/aws/0.14.0"` | no |
184184
| security\_group\_ids | Security Group IDs. | `list(string)` | `[]` | no |
185185
| subnet\_ids | Subnet IDs. | `list(string)` | `[]` | no |
186-
| tags | Additional tags (e.g. map(`BusinessUnit`,`XYZ`). | `map` | `{}` | no |
187-
| tls\_security\_policy | The name of the TLS security policy that needs to be applied to the HTTPS endpoint. | `any` | `null` | no |
186+
| tags | Additional tags (e.g. map(`BusinessUnit`,`XYZ`). | `map(any)` | `{}` | no |
187+
| tls\_security\_policy | The name of the TLS security policy that needs to be applied to the HTTPS endpoint. | `string` | `"Policy-Min-TLS-1-0-2019-07"` | no |
188188
| ttl | The TTL of the record to add to the DNS zone to complete certificate validation. | `string` | `"300"` | no |
189189
| type | Type of DNS records to create. | `string` | `"CNAME"` | no |
190190
| volume\_size | EBS volumes for data storage in GB. | `number` | `0` | no |

0 commit comments

Comments
 (0)