files.hcl

Create hcl files with correponding content

type

attribute set of (JSON value)

example

{
  files.hcl = {
    "/hellaos.hcl" = {
      greeting = "hello World";
    };
    "/hellows.hcl" = {
      greetings = [
        [
          "Hello World"
        ]
        [
          "Ola Mundo"
          [
            "Holla Que Tal"
          ]
        ]
      ];
    };
  };
}

default

{
  files.hcl = { };
}