We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
only change is I switched to PAY_PER_REQUEST
PAY_PER_REQUEST
resource "aws_dynamodb_table" "order_service_graph" { name = "GraphTable" billing_mode = "PAY_PER_REQUEST" hash_key = "Node" range_key = "Type" attribute { name = "Node" type = "S" } attribute { name = "Type" type = "S" } attribute { name = "Data" type = "S" } attribute { name = "GSIK" type = "S" } global_secondary_index { name = "ByType" hash_key = "GSIK" range_key = "Type" projection_type = "ALL" } global_secondary_index { name = "ByData" hash_key = "GSIK" range_key = "Data" projection_type = "ALL" } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
only change is I switched to
PAY_PER_REQUEST
The text was updated successfully, but these errors were encountered: