Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomationD committed Jun 7, 2024
1 parent d9e3e26 commit 91caa55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/examples_complete-worker-ec2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,12 @@ func TestExamplesWorkerEc2(t *testing.T) {
// Run `terraform output` to get the value of an output variable
vpcCidr := terraform.Output(t, terraformOptions, "vpc_cidr")
// Verify we're getting back the outputs we expect
assert.Equal(t, "10.4.0.0/16", vpcCidr)
assert.Equal(t, "10.0.20.0/16", vpcCidr)

// Run `terraform output` to get the value of an output variable
privateSubnetCidrs := terraform.OutputList(t, terraformOptions, "private_subnet_cidrs")
// Verify we're getting back the outputs we expect
assert.Equal(t, []string{"10.4.20.0/23"}, privateSubnetCidrs)
assert.Equal(t, []string{"10.0.20.0/23"}, privateSubnetCidrs)

// Run `terraform output` to get the value of an output variable
cloudWatchLogGroup := terraform.Output(t, terraformOptions, "cloudwatch_log_group")
Expand Down

0 comments on commit 91caa55

Please sign in to comment.