Skip to content

Commit

Permalink
add new path resources
Browse files Browse the repository at this point in the history
  • Loading branch information
mrk-qa committed Jan 16, 2024
1 parent 031995d commit 90c5507
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/terraform-aws-rds_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func TestTerraformAwsRds(t *testing.T) {
instanceType := aws.GetRecommendedRdsInstanceType(t, awsRegion, "mysql", engineVersion, []string{"db.t2.micro"})

terraformOptions := terraform.WithDefaultRetryableErrors(t, &terraform.Options{
TerraformDir: "../db/",
TerraformDir: "../resources/db/",

Vars: map[string]interface{}{
"name": expectedName,
Expand Down
2 changes: 1 addition & 1 deletion tests/terraform-aws-s3_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func TestTerraformAwsS3(t *testing.T) {
awsRegion := aws.GetRandomStableRegion(t, nil, nil)

terraformOptions := terraform.WithDefaultRetryableErrors(t, &terraform.Options{
TerraformDir: "../s3/",
TerraformDir: "../resources/s3/",

Vars: map[string]interface{}{
"tag_bucket_name": expectedName,
Expand Down
2 changes: 1 addition & 1 deletion tests/terraform-aws-vm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func TestTerraformAwsInstance(t *testing.T) {
t.Parallel()

terraformOptions := terraform.WithDefaultRetryableErrors(t, &terraform.Options{
TerraformDir: "../vm/",
TerraformDir: "../resources/vm/",
})

defer terraform.Destroy(t, terraformOptions)
Expand Down

0 comments on commit 90c5507

Please sign in to comment.