You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by oc...@apache.org on 2023/01/25 15:32:10 UTC

[trafficcontrol-trafficops-types] 05/10: Add cert SANs

This is an automated email from the ASF dual-hosted git repository.

ocket8888 pushed a commit to branch 4.x
in repository https://gitbox.apache.org/repos/asf/trafficcontrol-trafficops-types.git

commit c69fcbf0a30e93383196eb0632293dd6b0f3642f
Author: ocket8888 <oc...@apache.org>
AuthorDate: Thu Dec 8 08:59:07 2022 -0700

    Add cert SANs
---
 src/ssl.ts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/ssl.ts b/src/ssl.ts
index ce287ac..946e007 100644
--- a/src/ssl.ts
+++ b/src/ssl.ts
@@ -141,4 +141,5 @@ export interface ResponseDeliveryServiceSSLKey {
 	state?: string;
 	version: string;
 	expiration: Date;
+	sans?: [string, ...string[]];
 }