Skip to content

Commit 17105cc

Browse files
committed
chore(CI): add ap defaultverify
1 parent 375d27c commit 17105cc

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

examples/simple_autopilot_public/network.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ module "gcp-network" {
2121
project_id = var.project_id
2222
network_name = local.network_name
2323

24+
private_ip_google_access = true
25+
2426
subnets = [
2527
{
2628
subnet_name = local.subnet_name

test/integration/autopilot_private_firewalls/autopilot_private_firewalls_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ import (
2626
func TestAutopilotPrivateFirewalls(t *testing.T) {
2727
bpt := tft.NewTFBlueprintTest(t)
2828
bpt.DefineVerify(func(assert *assert.Assertions) {
29-
//Skipping Default Verify as the Verify Stage fails due to change in Client Cert Token
30-
// bpt.DefaultVerify(assert)
29+
bpt.DefaultVerify(assert)
3130
projectId := bpt.GetStringOutput("project_id")
3231
location := bpt.GetStringOutput("location")
3332
clusterName := bpt.GetStringOutput("cluster_name")

test/integration/simple_autopilot_private_non_default_sa/simple_autopilot_private_non_default_sa_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ func TestSimpleAutopilotPrivateNonDefaultSA(t *testing.T) {
3333
)
3434

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

3938
location := bpt.GetStringOutput("location")
4039
clusterName := bpt.GetStringOutput("cluster_name")

test/integration/simple_autopilot_public/simple_autopiliot_public_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ func TestSimpleAutopilotPublic(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)