Skip to content

Commit ac67e01

Browse files
authored
Merge pull request #17 from souza-dan/fix-example
SUP-5475 - Removes a variable that was removed in v3.0.0 from the example
2 parents e0ecf57 + 2870711 commit ac67e01

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

examples/minimal/main.tf

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,11 @@ resource "aws_iam_service_linked_role" "es" {
3434
}
3535

3636
module "tamr-es-cluster" {
37-
depends_on = [aws_iam_service_linked_role.es]
38-
source = "../../"
39-
vpc_id = aws_vpc.es_vpc.id
40-
domain_name = format("%s-elasticsearch", var.name-prefix)
41-
subnet_ids = [aws_subnet.es_subnet.id]
42-
# Only needed once per account, so may need to set this to false
43-
create_new_service_role = true
44-
security_group_ids = module.aws-sg.security_group_ids
45-
tags = var.tags
37+
depends_on = [aws_iam_service_linked_role.es]
38+
source = "../../"
39+
vpc_id = aws_vpc.es_vpc.id
40+
domain_name = format("%s-elasticsearch", var.name-prefix)
41+
subnet_ids = [aws_subnet.es_subnet.id]
42+
security_group_ids = module.aws-sg.security_group_ids
43+
tags = var.tags
4644
}

0 commit comments

Comments
 (0)