Skip to content

Commit 4e301e3

Browse files
Remediation gomboc-844f0ab3-9dc2-4260-9ce6-9f5aad640698
1 parent 593ba25 commit 4e301e3

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

tf-test/main.tf

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,27 @@ data "aws_region" "current" {}
66

77
resource "aws_dynamodb_table" "test_table_a" {
88

9+
deletion_protection_enabled = true
10+
billing_mode = "PAY_PER_REQUEST"
11+
tags = "null"
12+
server_side_encryption {
13+
enabled = false
14+
}
915
}
1016

1117
resource "aws_lambda_function" "myfunction" {
18+
tracing_config {
19+
mode = "Active"
20+
}
1221
}
1322

1423
resource "aws_appsync_graphql_api" "test_api" {
1524
authentication_type = "API_KEY"
25+
xray_enabled = true
1626
}
1727

1828
resource "aws_keyspaces_table" "mykeyspacestable" {
19-
}
29+
encryption_specification {
30+
type = "AWS_OWNED_KMS_KEY"
31+
}
32+
}

0 commit comments

Comments
 (0)