From 8f2f02764a81633b0f007587143b1fa927a2b840 Mon Sep 17 00:00:00 2001 From: Chris Machler <44274401+cmachler-sans@users.noreply.github.com> Date: Tue, 21 Apr 2020 15:05:37 -0600 Subject: [PATCH] Remove deprecated quoted type constraints --- variables.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/variables.tf b/variables.tf index 15c6e64..74b4306 100644 --- a/variables.tf +++ b/variables.tf @@ -28,13 +28,13 @@ variable "anomaly_period" { } variable "actions_alarm" { - type = "list" + type = list default = [] description = "A list of actions to take when alarms are triggered. Will likely be an SNS topic for event distribution." } variable "actions_ok" { - type = "list" + type = list default = [] description = "A list of actions to take when alarms are cleared. Will likely be an SNS topic for event distribution." }