Skip to content

Commit

Permalink
Merge pull request #13 from byu-oit/dynamo-recovery
Browse files Browse the repository at this point in the history
add point_in_time_recovery to dynamo
  • Loading branch information
joshgubler authored Sep 30, 2020
2 parents 4554657 + c00bc7f commit 6a358e7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rm -rf terraform-aws-backend-s3
## Usage
```hcl
module "backend-s3" {
source = "github.com/byu-oit/terraform-aws-backend-s3?ref=v1.0.4"
source = "github.com/byu-oit/terraform-aws-backend-s3?ref=v1.0.5"
}
```

Expand Down
2 changes: 1 addition & 1 deletion examples/simple/simple.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ provider "aws" {
}

module "backend_s3" {
source = "github.com/byu-oit/terraform-aws-backend-s3?ref=v1.0.4"
source = "github.com/byu-oit/terraform-aws-backend-s3?ref=v1.0.5"
}

output "s3" {
Expand Down
3 changes: 3 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,7 @@ resource "aws_dynamodb_table" "dynamodb-terraform-state-lock" {
name = "LockID"
type = "S"
}
point_in_time_recovery {
enabled = true
}
}

0 comments on commit 6a358e7

Please sign in to comment.