github.com/khulnasoft-lab/defsec@v1.0.5-0.20230827010352-5e9f46893d95/rules/cloud/policies/aws/kinesis/enable_in_transit_encryption.tf.go (about)

     1  package kinesis
     2  
     3  var terraformEnableInTransitEncryptionGoodExamples = []string{
     4  	`
     5   resource "aws_kinesis_stream" "good_example" {
     6   	encryption_type = "KMS"
     7   	kms_key_id = "my/special/key"
     8   }
     9   `,
    10  }
    11  
    12  var terraformEnableInTransitEncryptionBadExamples = []string{
    13  	`
    14   resource "aws_kinesis_stream" "bad_example" {
    15   	encryption_type = "NONE"
    16   }
    17   `,
    18  }
    19  
    20  var terraformEnableInTransitEncryptionLinks = []string{
    21  	`https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/kinesis_stream#encryption_type`,
    22  }
    23  
    24  var terraformEnableInTransitEncryptionRemediationMarkdown = ``