Skip to content

Commit a929543

Browse files
authored
Merge pull request #9 from souza-dan/deprecation-warning
DEV-14729 - Fixes a deprecation warning about interpolation-only expressions
2 parents 33b6825 + 76b65f9 commit a929543

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This terraform module creates an Elasticsearch (ES) domain on AWS.
66
Inline example implementation of the module. This is the most basic example of what it would look like to use this module.
77
```
88
module "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
}

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0
1+
1.0.1

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

modules/aws-es/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This is the most basic example of what it would look like to use this module.
88

99
```
1010
module "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
```

modules/es-security-group/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This repo follows the [terraform standard module structure](https://www.terrafor
77
Inline example implementation of the module. This is the most basic example of what it would look like to use this module.
88
```
99
module "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
```

0 commit comments

Comments
 (0)