From c65afde6b017c605ee6bbfeeffd4433dfefdca82 Mon Sep 17 00:00:00 2001 From: caiotavaresdito Date: Mon, 18 Oct 2021 11:13:53 -0400 Subject: [PATCH] Included new variables fixture test plan --- tests/modules/cloudsql_instance/fixture/variables.tf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/modules/cloudsql_instance/fixture/variables.tf b/tests/modules/cloudsql_instance/fixture/variables.tf index 3ddabc68..a3ff8e0f 100644 --- a/tests/modules/cloudsql_instance/fixture/variables.tf +++ b/tests/modules/cloudsql_instance/fixture/variables.tf @@ -28,10 +28,18 @@ variable "backup_configuration" { type = object({ enabled = bool binary_log_enabled = bool + start_time = string + location = string + log_retention_days = number + retention_count = number }) default = { enabled = false binary_log_enabled = false + start_time = "23:00" + location = "EU" + log_retention_days = 7 + retention_count = 7 } }