Skip to content

Commit

Permalink
Fix default PlatformType in GCP entrypoint (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshbranham authored Oct 31, 2024
1 parent 9301ae4 commit caaa2c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/verifier/gcp/entry_point.go
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit caaa2c9

Please sign in to comment.