From 1285ccd6a096942a1583b817c8a5406b4e7bae7c Mon Sep 17 00:00:00 2001 From: Sherif Abdel-Naby Date: Tue, 17 Oct 2023 00:38:47 +0300 Subject: [PATCH] Fix Reference to Undeclared Variable (#169) Co-authored-by: Dan Miller --- main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.tf b/main.tf index a11580e..ebf17c8 100644 --- a/main.tf +++ b/main.tf @@ -179,7 +179,7 @@ resource "aws_elasticsearch_domain" "default" { value = var.auto_tune.duration unit = "HOURS" } - cron_expression_for_recurrence = var.auto_tune_cron_schedule + cron_expression_for_recurrence = var.auto_tune.cron_schedule } } } @@ -321,4 +321,4 @@ module "kibana_hostname" { records = [join("", aws_elasticsearch_domain.default[*].endpoint)] context = module.this.context -} \ No newline at end of file +}