From 48f3095c43e910b704d80a05f9c36d6c444d952f Mon Sep 17 00:00:00 2001 From: "gomboc-ai-community[bot]" <215871000+gomboc-ai-community[bot]@users.noreply.github.com> Date: Mon, 30 Jun 2025 21:13:08 +0000 Subject: [PATCH] Remediation gomboc-a7d346c0-2abb-4f1d-8e49-31f353310206 --- tf-test/main.tf | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/tf-test/main.tf b/tf-test/main.tf index aade686..420a524 100644 --- a/tf-test/main.tf +++ b/tf-test/main.tf @@ -6,14 +6,27 @@ data "aws_region" "current" {} resource "aws_dynamodb_table" "test_table_a" { + deletion_protection_enabled = true + billing_mode = "PAY_PER_REQUEST" + tags = "null" + server_side_encryption { + enabled = false + } } resource "aws_lambda_function" "myfunction" { + tracing_config { + mode = "Active" + } } resource "aws_appsync_graphql_api" "test_api" { authentication_type = "API_KEY" + xray_enabled = true } resource "aws_keyspaces_table" "mykeyspacestable" { -} + encryption_specification { + type = "AWS_OWNED_KMS_KEY" + } +} \ No newline at end of file