Skip to content

Commit

Permalink
fix: smoke tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Telemaco019 committed Aug 29, 2024
1 parent 2b92505 commit cd99711
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions tests/smoke_test.tftest.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ provider "aws" {
}

run "setup" {
module {
module {
source = "./tests/setup"
}
}
Expand All @@ -14,8 +14,24 @@ run "smoke_test_plan" {
command = plan

variables {
vpc_id = run.setup.aws_vpc.id
subnet_ids = run.setup.aws_subnets.ids
vpc_id = run.setup.aws_vpc.id
subnet_ids = run.setup.aws_subnets.ids
security_group = run.setup.aws_security_group

allowed_inbound_cidr_blocks = {
"all" : "0.0.0.0/0"
}

platform_domain = "test.nebuly.com"

openai_api_key = "test"
openai_endpoint = "https://test.nebuly.com"
openai_gpt4_deployment_name = "test"

nebuly_credentials = {
client_id = "test"
client_secret = "test"
}
}

}

0 comments on commit cd99711

Please sign in to comment.