From fa2c1a92e10f56a013425a5c15315f034b3ec65a Mon Sep 17 00:00:00 2001 From: Josh Branham Date: Thu, 31 Oct 2024 14:47:15 -0600 Subject: [PATCH] Fix default PlatformType in GCP entrypoint --- pkg/verifier/gcp/entry_point.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/verifier/gcp/entry_point.go b/pkg/verifier/gcp/entry_point.go index 620bab8f..9e785f8f 100644 --- a/pkg/verifier/gcp/entry_point.go +++ b/pkg/verifier/gcp/entry_point.go @@ -28,7 +28,7 @@ const ( func (g *GcpVerifier) ValidateEgress(vei verifier.ValidateEgressInput) *output.Output { // Validate cloud platform type and default to PlatformGCP if not specified if !vei.PlatformType.IsValid() { - vei.PlatformType = cloud.AWSClassic + vei.PlatformType = cloud.GCPClassic } // Validate CPUArchitecture and default to ArchX86 if not specified if !vei.CPUArchitecture.IsValid() {