From eb8a237e98dabba4037a9b7c4a2c8d5a64895ae8 Mon Sep 17 00:00:00 2001 From: "gomboc-community-dev[bot]" <212425363+gomboc-community-dev[bot]@users.noreply.github.com> Date: Mon, 30 Jun 2025 21:32:26 +0000 Subject: [PATCH] Remediation gomboc-e56a0b0f-2a90-496a-9f3b-0a758829f759 --- 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 2a8dc4a..0d072ed 100644 --- a/tf-test/main.tf +++ b/tf-test/main.tf @@ -5,15 +5,28 @@ provider "aws" { 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