2023-08-11 13:12:13 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
|
2023-07-17 22:15:22 +00:00
|
|
|
package tfgen
|
|
|
|
|
|
|
|
import (
|
|
|
|
"embed"
|
|
|
|
)
|
|
|
|
|
|
|
|
//go:embed templates/container-app-dataplane.tf.tmpl
|
|
|
|
//go:embed templates/container-app-sidecar.tf.tmpl
|
|
|
|
//go:embed templates/container-app.tf.tmpl
|
|
|
|
//go:embed templates/container-consul.tf.tmpl
|
|
|
|
//go:embed templates/container-mgw.tf.tmpl
|
|
|
|
//go:embed templates/container-pause.tf.tmpl
|
|
|
|
//go:embed templates/container-proxy.tf.tmpl
|
|
|
|
//go:embed templates/container-coredns.tf.tmpl
|
|
|
|
var content embed.FS
|