summaryrefslogtreecommitdiff
path: root/internal/funcs/aws.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/funcs/aws.go')
-rw-r--r--internal/funcs/aws.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/internal/funcs/aws.go b/internal/funcs/aws.go
index ef95d612..01e225ca 100644
--- a/internal/funcs/aws.go
+++ b/internal/funcs/aws.go
@@ -8,25 +8,6 @@ import (
"github.com/hairyhenderson/gomplate/v4/conv"
)
-// AWSNS - the aws namespace
-//
-// Deprecated: don't use
-//
-//nolint:golint
-func AWSNS() *Funcs {
- return &Funcs{}
-}
-
-// AWSFuncs -
-//
-// Deprecated: use [CreateAWSFuncs] instead
-func AWSFuncs(f map[string]interface{}) {
- f2 := CreateAWSFuncs(context.Background())
- for k, v := range f2 {
- f[k] = v
- }
-}
-
// CreateAWSFuncs -
func CreateAWSFuncs(ctx context.Context) map[string]interface{} {
f := map[string]interface{}{}