Included new variables fixture test plan

This commit is contained in:
caiotavaresdito 2021-10-18 11:13:53 -04:00
parent 64fc4fcaf6
commit c65afde6b0
1 changed files with 8 additions and 0 deletions

View File

@ -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
}
}