From fa5fab4659c2ee263ecfe24a62007a286265f7dd Mon Sep 17 00:00:00 2001 From: Noah Stride Date: Thu, 21 May 2026 15:49:23 +0100 Subject: [PATCH] Delete unused template consts (#66948) --- lib/tbot/config/template.go | 49 ------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 lib/tbot/config/template.go diff --git a/lib/tbot/config/template.go b/lib/tbot/config/template.go deleted file mode 100644 index 220e6d9f69f..00000000000 --- a/lib/tbot/config/template.go +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Teleport - * Copyright (C) 2023 Gravitational, Inc. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package config - -const ( - // TemplateSSHClientName is the config name for generating ssh client - // config files. - TemplateSSHClientName = "ssh_client" - - // TemplateIdentityName is the config name for Teleport identity files. - TemplateIdentityName = "identity" - - // TemplateTLSName is the config name for TLS client certificates. - TemplateTLSName = "tls" - - // TemplateTLSCAsName is the config name for TLS CA certificates. - TemplateTLSCAsName = "tls_cas" - - // TemplateMongoName is the config name for MongoDB-formatted certificates. - TemplateMongoName = "mongo" - - // TemplateCockroachName is the config name for CockroachDB-formatted - // certificates. - TemplateCockroachName = "cockroach" - - // TemplateKubernetesName is the config name for generating Kubernetes - // client config files - TemplateKubernetesName = "kubernetes" - - // TemplateSSHHostCertName is the config name for generating SSH host - // certificates - TemplateSSHHostCertName = "ssh_host_cert" -)