From 957154b0b3ca218d3f648acba7d2532a48ade8c7 Mon Sep 17 00:00:00 2001 From: badra001 Date: Thu, 14 Oct 2021 12:34:28 -0400 Subject: [PATCH] add variables.tf --- patch-aws-auth/variables.tf | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 patch-aws-auth/variables.tf diff --git a/patch-aws-auth/variables.tf b/patch-aws-auth/variables.tf new file mode 100644 index 0000000..60e0f94 --- /dev/null +++ b/patch-aws-auth/variables.tf @@ -0,0 +1,5 @@ +variable "keep_temporary_files" { + description = "This module creates temporary files in setup/patch-aws-auth.TIMESTAMP.*. This flag determines whether to keep or remove them (default: false)" + type = bool + default = false +}