-
Notifications
You must be signed in to change notification settings - Fork 0
Gomboc Fix for #34 - tf-test #35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: pepegc-patch-23
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,14 +5,28 @@ provider "aws" { | |
| data "aws_region" "current" {} | ||
|
|
||
| resource "aws_dynamodb_table" "test_table_a" { | ||
| tags = "null" | ||
| deletion_protection_enabled = true | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Leave feedbackPlease post on our discussions channel. You can provide the following reference: d464e376604756a617e8baccc5cc483f0de93c9d80f2d39c7ee5e0a0d2572966 |
||
| billing_mode = "PAY_PER_REQUEST" | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Leave feedbackPlease post on our discussions channel. You can provide the following reference: 2611ff7b5b3eae44bcc9796c834cd2d2c7935c9e97dd43e531cea620e981feb1 |
||
| server_side_encryption { | ||
| enabled = false | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Impact of the change: By explicitly setting server-side encryption to Leave feedbackPlease post on our discussions channel. You can provide the following reference: b0f7e9f4458edaed4cd2552dd0d3c1f1f2afaf3a233e43f01c1c0ba789462c97 |
||
| } | ||
| } | ||
|
|
||
| resource "aws_lambda_function" "myfunction" { | ||
| tracing_config { | ||
| mode = "Active" | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The configuration for your AWS Lambda Function resource has been updated to include a Leave feedbackPlease post on our discussions channel. You can provide the following reference: 62765aecbde07930d8afdc5696a332e40096397147c55134f82a87707ef492b7 |
||
| } | ||
| } | ||
|
|
||
| resource "aws_appsync_graphql_api" "test_api" { | ||
| authentication_type = "API_KEY" | ||
| xray_enabled = true | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Leave feedbackPlease post on our discussions channel. You can provide the following reference: af879331249c525901eab405f59e69d22c6054f0f9210c45442068029cac615e |
||
| } | ||
|
|
||
| resource "aws_keyspaces_table" "mykeyspacestable" { | ||
| } | ||
| encryption_specification { | ||
| kms_key_identifier = "null" | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The This modification ensures that the table is encrypted using a customer-managed KMS key, providing enhanced security through customer control over the encryption keys. By setting Leave feedbackPlease post on our discussions channel. You can provide the following reference: 1f35f477d7faa9bdc76e6749f2e7d6cadf476dce54f62502f9a783d140e13f9d |
||
| type = "CUSTOMER_MANAGED_KMS_KEY" | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To ensure compliance with the Terraform rule for AWS Keyspaces table resource ( The impact of this change is significant for data security. By specifying the Leave feedbackPlease post on our discussions channel. You can provide the following reference: 1f35f477d7faa9bdc76e6749f2e7d6cadf476dce54f62502f9a783d140e13f9d |
||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To ensure compliance, the
tagsattribute has been added to your AWS DynamoDB table resource configuration. This modification involves defining a set of key-value pairs within thetagsblock.The impact of this change is significant for resource management: tagging helps in organizing and categorizing your resources effectively. It enhances resource visibility and management, which is crucial for operational efficiency, cost allocation, and compliance with best practices. By including tags, you are also aligning with organizational policies and industry standards for resource management.
Leave feedback
Please post on our discussions channel. You can provide the following reference: 411f3e36ed53e52f7e3cbaf9072767d6262fc37d250785221664e8503f0fb156