From 4d5bf579f3f0320b2af1df66e5102e48eb1f5e3d Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Sat, 9 Nov 2024 12:56:59 -0700 Subject: [PATCH] fix typo --- variables.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/variables.tf b/variables.tf index efe3bf9..4aa841a 100644 --- a/variables.tf +++ b/variables.tf @@ -44,9 +44,11 @@ variable "aws_region" { variable "aws_access_key" { description = "AWS Access Key" type = string + sensitive = true } variable "aws_secret_key" { description = "AWS Secret Key" type = string + sensitive = true }