From 04d95d2edacda654fef6102bf5c73ce0d32fbdd4 Mon Sep 17 00:00:00 2001 From: Nathan Coleman Date: Tue, 11 Jun 2024 11:35:41 -0500 Subject: [PATCH] Use text/template instead of html/template for ACL template policy generation (#21303) --- agent/structs/acl_templated_policy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/structs/acl_templated_policy.go b/agent/structs/acl_templated_policy.go index 04c85515ff..52bdb0d66f 100644 --- a/agent/structs/acl_templated_policy.go +++ b/agent/structs/acl_templated_policy.go @@ -9,7 +9,7 @@ import ( "fmt" "hash" "hash/fnv" - "html/template" + "text/template" "github.com/hashicorp/go-multierror" "github.com/xeipuuv/gojsonschema"