Skip to content

Commit b176e9b

Browse files
Create dynamodb.tf
1 parent 1445d76 commit b176e9b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

dynamodb.tf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
resource "aws_dynamodb_table" "my_app_table" {
2+
name = "${var.my_enviroment}-test-my-app-table-d"
3+
billing_mode = "PAY_PER_REQUEST"
4+
hash_key = "id"
5+
attribute {
6+
name = "id"
7+
type = "S"
8+
}
9+
}

0 commit comments

Comments
 (0)