Skip to content

Commit 3ac8945

Browse files
committed
Fix table name
1 parent 5aa3102 commit 3ac8945

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

terraform/envs/prod/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,11 @@ resource "aws_dynamodb_table" "membership_provisioning_log" {
105105
// API Keys
106106
import {
107107
to = aws_dynamodb_table.api_keys
108-
id = "${var.ProjectId}-api-keys"
108+
id = "${var.ProjectId}-keys"
109109
}
110110
resource "aws_dynamodb_table" "api_keys" {
111111
billing_mode = "PAY_PER_REQUEST"
112-
name = "${var.ProjectId}-api-keys"
112+
name = "${var.ProjectId}-keys"
113113
deletion_protection_enabled = true
114114
hash_key = "keyId"
115115
point_in_time_recovery {

terraform/envs/qa/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ import {
9898
}
9999
resource "aws_dynamodb_table" "api_keys" {
100100
billing_mode = "PAY_PER_REQUEST"
101-
name = "${var.ProjectId}-api-keys"
101+
name = "${var.ProjectId}-keys"
102102
deletion_protection_enabled = true
103103
hash_key = "keyId"
104104
point_in_time_recovery {

0 commit comments

Comments
 (0)