gcp: Add terraform rendering to Pool Health Check

This commit is contained in:
Ciprian Hacman 2023-03-16 07:02:49 +02:00
parent dc92df3643
commit 8f2236e3ea
1 changed files with 5 additions and 0 deletions

View File

@ -22,6 +22,7 @@ import (
compute "google.golang.org/api/compute/v1"
"k8s.io/kops/upup/pkg/fi"
"k8s.io/kops/upup/pkg/fi/cloudup/gce"
"k8s.io/kops/upup/pkg/fi/cloudup/terraform"
)
// PoolHealthCheck represents a GCE target pool HealthCheck
@ -105,3 +106,7 @@ func (p *PoolHealthCheck) RenderGCE(t *gce.GCEAPITarget, a, e, changes *PoolHeal
}
return nil
}
func (_ *PoolHealthCheck) RenderTerraform(t *terraform.TerraformTarget, a, e, changes *PoolHealthCheck) error {
return nil
}