File tree Expand file tree Collapse file tree 6 files changed +8
-5
lines changed Expand file tree Collapse file tree 6 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 11# Tamr Terraform AWS Elasticsearch Repo
22
3+ ## v1.0.1 - April 13th 2021
4+ * Fixes a deprecation warning about interpolation-only expressions
5+
36## v1.0.0 - April 12th 2021
47* Updates minimum Terraform version to 13
58* Updates minimum AWS provider version to 3.36.0
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ This terraform module creates an Elasticsearch (ES) domain on AWS.
66Inline example implementation of the module. This is the most basic example of what it would look like to use this module.
77```
88module "tamr-es-cluster" {
9- source = "git::https://github.com/Datatamer/terraform-aws-es?ref=1.0.0 "
9+ source = "git::https://github.com/Datatamer/terraform-aws-es?ref=1.0.1 "
1010 vpc_id = "vpc-id"
1111 subnet_ids = ["subnet-id"]
1212}
Original file line number Diff line number Diff line change 1- 1.0.0
1+ 1.0.1
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ module "tamr-es-cluster" {
55 instance_count = var. instance_count
66 instance_type = var. instance_type
77 subnet_ids = var. subnet_ids
8- security_group_ids = [" ${ module . elasticsearch-sg . es_security_group_id } " ]
8+ security_group_ids = [module . elasticsearch-sg . es_security_group_id ]
99 snapshot_start_hour = var. snapshot_start_hour
1010 ebs_enabled = var. ebs_enabled
1111 ebs_iops = var. ebs_iops
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ This is the most basic example of what it would look like to use this module.
88
99```
1010module "tamr-es-cluster" {
11- source = "git::https://github.com/Datatamer/terraform-aws-es//modules/aws-es?ref=1.0.0 "
11+ source = "git::https://github.com/Datatamer/terraform-aws-es//modules/aws-es?ref=1.0.1 "
1212 subnet_ids = ["subnet-id"]
1313}
1414```
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ This repo follows the [terraform standard module structure](https://www.terrafor
77Inline example implementation of the module. This is the most basic example of what it would look like to use this module.
88```
99module "tamr-es-cluster" {
10- source = "git::https://github.com/Datatamer/terraform-aws-es//modules/es-security-group?ref=1.0.0 "
10+ source = "git::https://github.com/Datatamer/terraform-aws-es//modules/es-security-group?ref=1.0.1 "
1111 vpc_id = "vpc-id"
1212}
1313```
You can’t perform that action at this time.
0 commit comments