Skip to content

Commit

Permalink
feture #8 - add circuit breaker table
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugeniosales committed Oct 17, 2022
1 parent a65bf1c commit be45ee2
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions terraform/dynamodb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,14 @@ resource "aws_dynamodb_table" "product" {
projection_type = "ALL"
}
}

resource "aws_dynamodb_table" "circuit-breaker" {
name = "CircuitBreaker"
billing_mode = "PAY_PER_REQUEST"
hash_key = "key"

attribute {
name = "key"
type = "S"
}
}

0 comments on commit be45ee2

Please sign in to comment.