Skip to content

Commit 6426e19

Browse files
Remediation gomboc-bc4364bc-3c90-4efc-b3ac-a6c606a1847a
1 parent 8b10c6e commit 6426e19

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,15 +5,29 @@ 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" {
1117

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+
kms_key_identifier = "null"
31+
type = "CUSTOMER_MANAGED_KMS_KEY"
32+
}
33+
}

0 commit comments

Comments
 (0)