Skip to content

Commit 1c2c287

Browse files
authored
Merge pull request tmknom#13 from tmknom/change-type-of-variables-to-number
Change type of variables to number
2 parents 0c224f8 + f3959c8 commit 1c2c287

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ variable "engine_version" {
3636

3737
variable "port" {
3838
default = 6379
39-
type = string
39+
type = number
4040
description = "The port number on which each of the cache nodes will accept connections."
4141
}
4242

@@ -53,8 +53,8 @@ variable "snapshot_window" {
5353
}
5454

5555
variable "snapshot_retention_limit" {
56-
default = "30"
57-
type = string
56+
default = 30
57+
type = number
5858
description = "The number of days for which ElastiCache will retain automatic cache cluster snapshots before deleting them."
5959
}
6060

0 commit comments

Comments
 (0)