File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ resource "aws_dynamodb_table" "table" {
16
16
}
17
17
18
18
point_in_time_recovery {
19
- enabled = var . point_in_time_recovery_enabled
19
+ enabled = true
20
20
}
21
21
22
22
dynamic "attribute" {
@@ -99,7 +99,7 @@ resource "aws_dynamodb_table" "table_autoscaled" {
99
99
}
100
100
101
101
point_in_time_recovery {
102
- enabled = var . point_in_time_recovery_enabled
102
+ enabled = true
103
103
}
104
104
105
105
dynamic "attribute" {
Original file line number Diff line number Diff line change @@ -50,12 +50,6 @@ variable "read_capacity" {
50
50
default = null
51
51
}
52
52
53
- variable "point_in_time_recovery_enabled" {
54
- description = " Enable point-in-time recovery"
55
- type = bool
56
- default = false
57
- }
58
-
59
53
variable "ttl_enabled" {
60
54
description = " Enalbe TTL"
61
55
type = bool
You can’t perform that action at this time.
0 commit comments