Skip to content

Commit

Permalink
fix: 🐛 Fix the integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pedropinheiro75 committed Aug 30, 2023
1 parent 19d3300 commit 86e15f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ module "access_logs" {
}

resource "aws_security_group" "alb" {
count = local.enabled ? 1 : 0

name = "${local.name}-sg"
description = "Allow ALB inbound traffic"
vpc_id = var.vpc_id
Expand Down
2 changes: 1 addition & 1 deletion test/src/examples_complete_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func TestExamplesCompleteDisabled(t *testing.T) {
t.Parallel()

rootFolder := "../../"
terraformFolderRelativeToRoot := "examples/complete/service"
terraformFolderRelativeToRoot := "examples/complete/load-balancer"

// Uncomment these when doing local testing if you need to skip any stages.
//os.Setenv("SKIP_apply", "true")
Expand Down

0 comments on commit 86e15f7

Please sign in to comment.