From 7d64745902a3d6fbca5f6f0f217d0209c8d675d6 Mon Sep 17 00:00:00 2001 From: "gomboc-community-dev[bot]" <212425363+gomboc-community-dev[bot]@users.noreply.github.com> Date: Tue, 22 Jul 2025 22:28:37 +0000 Subject: [PATCH] Remediation gomboc-0b9c41eb-d803-4f22-84b8-cda75a6a5e70 --- tf-test/main.tf | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/tf-test/main.tf b/tf-test/main.tf index 2a6e0c4..90e802b 100644 --- a/tf-test/main.tf +++ b/tf-test/main.tf @@ -5,14 +5,28 @@ provider "aws" { data "aws_region" "current" {} resource "aws_dynamodb_table" "test_table_a" { + tags = "null" + deletion_protection_enabled = true + billing_mode = "PAY_PER_REQUEST" + 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 { + kms_key_identifier = "null" + type = "CUSTOMER_MANAGED_KMS_KEY" + } +} \ No newline at end of file