Skip to content

Commit 7d64745

Browse files
Remediation gomboc-0b9c41eb-d803-4f22-84b8-cda75a6a5e70
1 parent 8b2d07a commit 7d64745

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

tf-test/main.tf

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,28 @@ provider "aws" {
55
data "aws_region" "current" {}
66

77
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+
}
814
}
915

1016
resource "aws_lambda_function" "myfunction" {
17+
tracing_config {
18+
mode = "Active"
19+
}
1120
}
1221

1322
resource "aws_appsync_graphql_api" "test_api" {
1423
authentication_type = "API_KEY"
24+
xray_enabled = true
1525
}
1626

1727
resource "aws_keyspaces_table" "mykeyspacestable" {
18-
}
28+
encryption_specification {
29+
kms_key_identifier = "null"
30+
type = "CUSTOMER_MANAGED_KMS_KEY"
31+
}
32+
}

0 commit comments

Comments
 (0)