We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1445d76 commit b176e9bCopy full SHA for b176e9b
dynamodb.tf
@@ -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