christianlempa-boilerplates/terraform/kubectl/manifest.tf

7 lines
138 B
Terraform
Raw Normal View History

2022-03-16 17:54:10 +01:00
resource "kubectl_manifest" "your-manifest-file" {
yaml_body = <<YAML
# Put your Manifest-file Content right here...
# ...
YAML
}