Skip to content

Commit 9dfb399

Browse files
committed
Change type of flag to bool
1 parent d2b8124 commit 9dfb399

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

variables.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,25 +60,25 @@ variable "snapshot_retention_limit" {
6060

6161
variable "automatic_failover_enabled" {
6262
default = true
63-
type = string
63+
type = bool
6464
description = "Specifies whether a read-only replica will be automatically promoted to read/write primary if the existing primary fails."
6565
}
6666

6767
variable "at_rest_encryption_enabled" {
6868
default = true
69-
type = string
69+
type = bool
7070
description = "Whether to enable encryption at rest."
7171
}
7272

7373
variable "transit_encryption_enabled" {
7474
default = true
75-
type = string
75+
type = bool
7676
description = "Whether to enable encryption in transit."
7777
}
7878

7979
variable "apply_immediately" {
8080
default = false
81-
type = string
81+
type = bool
8282
description = "Specifies whether any modifications are applied immediately, or during the next maintenance window."
8383
}
8484

0 commit comments

Comments
 (0)