Skip to content

Commit 1285ccd

Browse files
Fix Reference to Undeclared Variable (#169)
Co-authored-by: Dan Miller <[email protected]>
1 parent 102fe02 commit 1285ccd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ resource "aws_elasticsearch_domain" "default" {
179179
value = var.auto_tune.duration
180180
unit = "HOURS"
181181
}
182-
cron_expression_for_recurrence = var.auto_tune_cron_schedule
182+
cron_expression_for_recurrence = var.auto_tune.cron_schedule
183183
}
184184
}
185185
}
@@ -321,4 +321,4 @@ module "kibana_hostname" {
321321
records = [join("", aws_elasticsearch_domain.default[*].endpoint)]
322322

323323
context = module.this.context
324-
}
324+
}

0 commit comments

Comments
 (0)