Skip to content

Commit 6e5559e

Browse files
authored
chore(CI): enable simple_autopilot_private_test DefaultVerify (terraform-google-modules#2091)
1 parent bf779f0 commit 6e5559e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

examples/simple_autopilot_private/network.tf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,10 @@ module "gcp-network" {
2323

2424
subnets = [
2525
{
26-
subnet_name = local.subnet_name
27-
subnet_ip = "10.0.0.0/17"
28-
subnet_region = var.region
26+
subnet_name = local.subnet_name
27+
subnet_ip = "10.0.0.0/17"
28+
subnet_region = var.region
29+
subnet_private_access = true
2930
},
3031
{
3132
subnet_name = local.master_auth_subnetwork

test/integration/simple_autopilot_private/simple_autopilot_private_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ func TestSimpleAutopilotPrivate(t *testing.T) {
3030
)
3131

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

3635
projectId := bpt.GetStringOutput("project_id")
3736
location := bpt.GetStringOutput("location")

0 commit comments

Comments
 (0)