From f9f2561e525263c25eaa53aca5bd8d243718c41f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Timoth=C3=A9e=20Aufort?= <taufort@ippon.fr>
Date: Thu, 25 Mar 2021 16:45:39 +0100
Subject: [PATCH] fix(git): update .gitignore file and add dev.tfvars file for
 dev TF workspace

---
 .gitignore             | 8 ++------
 deploy/vars/dev.tfvars | 3 +++
 2 files changed, 5 insertions(+), 6 deletions(-)
 create mode 100644 deploy/vars/dev.tfvars

diff --git a/.gitignore b/.gitignore
index 3dd1c67..68edd26 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,12 +8,8 @@
 # Crash log files
 crash.log
 
-# Exclude all .tfvars files, which are likely to contain sentitive data, such as
-# password, private keys, and other secrets. These should not be part of version 
-# control as they are data points which are potentially sensitive and subject 
-# to change depending on the environment.
-#
-*.tfvars
+# Exclude default terraform.tfvars file
+terraform.tfvars
 
 # Ignore override files as they are usually used to override resources locally and so
 # are not checked in
diff --git a/deploy/vars/dev.tfvars b/deploy/vars/dev.tfvars
new file mode 100644
index 0000000..35e13d2
--- /dev/null
+++ b/deploy/vars/dev.tfvars
@@ -0,0 +1,3 @@
+dynamodb_read_capacity  = 1
+dynamodb_write_capacity = 1
+dynamodb_enable_pitr    = false
-- 
GitLab