nixpkgs/pkgs/tools/misc/tfk8s/tests/sample1/output.tf

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
210 B
Terraform
Raw Normal View History

2021-07-14 12:53:00 +02:00
resource "kubernetes_manifest" "configmap_test" {
manifest = {
"apiVersion" = "v1"
"data" = {
"TEST" = "test"
}
"kind" = "ConfigMap"
"metadata" = {
"name" = "test"
}
}
}