Skip to content

Commit

Permalink
Test : TF | Modules | AWS S3 Notification Lambda
Browse files Browse the repository at this point in the history
  • Loading branch information
unchaptered committed Feb 18, 2024
1 parent 0d057b4 commit afd2441
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package main

import (
"testing"

"github.com/gruntwork-io/terratest/modules/terraform"
)

func Test_Terraform_Modules_Aws_Serverless_S3NotificationLambda(t *testing.T) {
tfOptions := terraform.WithDefaultRetryableErrors(t, &terraform.Options{
TerraformDir: "../../../../../modules/aws/serverless/s3_notification_lambda",
VarFiles: []string{"./sample.tfvars"},
})

defer terraform.Destroy(t, tfOptions)

terraform.Init(t, tfOptions)
}

0 comments on commit afd2441

Please sign in to comment.