Skip to content

Commit 09ab8ed

Browse files
authored
Merge branch 'master' into enabled-components-autopilot
2 parents 7161cdf + 6a82192 commit 09ab8ed

File tree

7 files changed

+13
-15
lines changed

7 files changed

+13
-15
lines changed

examples/autopilot_private_firewalls/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

examples/safer_cluster_iap_bastion/bastion.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ locals {
2121

2222
module "bastion" {
2323
source = "terraform-google-modules/bastion-host/google"
24-
version = "~> 7.0"
24+
version = "~> 8.0"
2525

2626
network = module.vpc.network_self_link
2727
subnet = module.vpc.subnets_self_links[0]

examples/simple_autopilot_public/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/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/beta_cluster/beta_cluster_test.go

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

3535
gke.DefineVerify(func(assert *assert.Assertions) {
36-
// Commenting Default Verify due to issue 1478 for location Policy
37-
// gke.DefaultVerify(assert) //disables no changes
36+
gke.DefaultVerify(assert)
3837

3938
projectId := gke.GetStringOutput("project_id")
4039
location := gke.GetStringOutput("location")

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)