From abe951d4169eee44eb80536535caf4c270010dcf Mon Sep 17 00:00:00 2001 From: Mariano Cano Date: Thu, 17 Feb 2022 17:59:17 -0800 Subject: [PATCH] Fix name of the variable in comment. --- authority/provisioner/nebula.go | 6 +++--- authority/provisioner/x5c.go | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/authority/provisioner/nebula.go b/authority/provisioner/nebula.go index 71c57590..72a275ff 100644 --- a/authority/provisioner/nebula.go +++ b/authority/provisioner/nebula.go @@ -139,9 +139,9 @@ func (p *Nebula) AuthorizeSign(ctx context.Context, token string) ([]SignOption, data.SetToken(v) } - // The Nebula certificate will be available using the template variable Crt. - // For example {{ .AuthorizationCrt.Details.Groups }} can be used to get all - // the groups. + // The Nebula certificate will be available using the template variable + // AuthorizationCrt. For example {{ .AuthorizationCrt.Details.Groups }} can + // be used to get all the groups. data.SetAuthorizationCertificate(crt) templateOptions, err := TemplateOptions(p.Options, data) diff --git a/authority/provisioner/x5c.go b/authority/provisioner/x5c.go index 342ccd73..aa44245d 100644 --- a/authority/provisioner/x5c.go +++ b/authority/provisioner/x5c.go @@ -213,9 +213,9 @@ func (p *X5C) AuthorizeSign(ctx context.Context, token string) ([]SignOption, er data.SetToken(v) } - // The X509 certificate will be available using the template variable Crt. - // For example {{ .AuthorizationCrt.DNSNames }} can be used to get all the - // domains. + // The X509 certificate will be available using the template variable + // AuthorizationCrt. For example {{ .AuthorizationCrt.DNSNames }} can be + // used to get all the domains. data.SetAuthorizationCertificate(claims.chains[0][0]) templateOptions, err := TemplateOptions(p.Options, data) @@ -292,9 +292,9 @@ func (p *X5C) AuthorizeSSHSign(ctx context.Context, token string) ([]SignOption, data.SetToken(v) } - // The X509 certificate will be available using the template variable Crt. - // For example {{ .AuthorizationCrt.DNSNames }} can be used to get all the - // domains. + // The X509 certificate will be available using the template variable + // AuthorizationCrt. For example {{ .AuthorizationCrt.DNSNames }} can be + // used to get all the domains. data.SetAuthorizationCertificate(claims.chains[0][0]) templateOptions, err := TemplateSSHOptions(p.Options, data)