From c7d3e6daeb9e42159164b4d950bee10405fef20c Mon Sep 17 00:00:00 2001 From: Meredith Lancaster Date: Mon, 25 Nov 2024 14:50:16 -0700 Subject: [PATCH] Update pkg/cmd/attestation/verification/policy.go Co-authored-by: Phill MV --- pkg/cmd/attestation/verification/policy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/attestation/verification/policy.go b/pkg/cmd/attestation/verification/policy.go index ea2e60a4e..4e92d773c 100644 --- a/pkg/cmd/attestation/verification/policy.go +++ b/pkg/cmd/attestation/verification/policy.go @@ -69,7 +69,7 @@ The following policy criteria will be enforced against all attestations: } if c.SAN != "" { - info += fmt.Sprintf("\n- Signing certificate must have a Subject Alternative Name matching the exact value %s", c.SAN) + info += fmt.Sprintf("\n- Signing certificate Subject Alternative Name must match %s", c.SAN) } else if c.SANRegex != "" { info += fmt.Sprintf("\n- Signing certificate must have a Subject Alternative Name matching the regex %s", c.SANRegex) }