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 8b10c6e commit 6426e19Copy full SHA for 6426e19
tf-test/main.tf
@@ -5,15 +5,29 @@ provider "aws" {
5
data "aws_region" "current" {}
6
7
resource "aws_dynamodb_table" "test_table_a" {
8
+ tags = "null"
9
+ deletion_protection_enabled = true
10
+ billing_mode = "PAY_PER_REQUEST"
11
+ server_side_encryption {
12
+ enabled = false
13
+ }
14
}
15
16
resource "aws_lambda_function" "myfunction" {
17
18
+ tracing_config {
19
+ mode = "Active"
20
21
22
23
resource "aws_appsync_graphql_api" "test_api" {
24
authentication_type = "API_KEY"
25
+ xray_enabled = true
26
27
28
resource "aws_keyspaces_table" "mykeyspacestable" {
-}
29
+ encryption_specification {
30
+ kms_key_identifier = "null"
31
+ type = "CUSTOMER_MANAGED_KMS_KEY"
32
33
+}
0 commit comments