From b660118169bafa72fefd4aae51fe624ebd2ce091 Mon Sep 17 00:00:00 2001 From: Felix Bechstein Date: Wed, 1 Jan 2020 08:15:42 +0100 Subject: [PATCH] Fix syntax warnings for tf >=0.12 fixes #1 --- variables.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/variables.tf b/variables.tf index 63164ec..4553171 100644 --- a/variables.tf +++ b/variables.tf @@ -1,9 +1,9 @@ variable "src_dir" { description = "Path to root of Python source to package." - type = "string" + type = string } variable "output_path" { description = "The output of the archive file." - type = "string" -} \ No newline at end of file + type = string +}