Fix Kubernetes questions format

Was using 4 backticks instead of 3.
This commit is contained in:
abregman
2022-09-07 22:08:20 +03:00
parent 682aaa483e
commit 8db5e5000f
4 changed files with 112 additions and 65 deletions

View File

@@ -0,0 +1,23 @@
provider "aws" {
region = "us-west-1"
}
resource "aws_dynamodb_table" "users" {
name = "users"
hash_key = "id"
attribute {
name = "id"
type = "S"
}
attribute {
name = "login"
type = "S"
}
global_secondary_index {
hash_key =
}
}