Skip to content

Commit

Permalink
chore(CI): enable simple_autopilot_private_test DefaultVerify (#2091)
Browse files Browse the repository at this point in the history
  • Loading branch information
apeabody authored Sep 27, 2024
1 parent bf779f0 commit 6e5559e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
7 changes: 4 additions & 3 deletions examples/simple_autopilot_private/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ module "gcp-network" {

subnets = [
{
subnet_name = local.subnet_name
subnet_ip = "10.0.0.0/17"
subnet_region = var.region
subnet_name = local.subnet_name
subnet_ip = "10.0.0.0/17"
subnet_region = var.region
subnet_private_access = true
},
{
subnet_name = local.master_auth_subnetwork
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ func TestSimpleAutopilotPrivate(t *testing.T) {
)

bpt.DefineVerify(func(assert *assert.Assertions) {
//Skipping Default Verify as the Verify Stage fails due to change in Client Cert Token
// bpt.DefaultVerify(assert)
bpt.DefaultVerify(assert)

projectId := bpt.GetStringOutput("project_id")
location := bpt.GetStringOutput("location")
Expand Down

0 comments on commit 6e5559e

Please sign in to comment.