palate 0.3.9

File type detection combining tft and hyperpolyglot
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
resource "aws_instance" "web" {
  // Copies the myapp.conf file to /etc/myapp.conf
  provisioner "file" {
    source = "conf/myapp.conf"
    destination = "/etc/myapp.conf"
  }

  // Copies the configs.d folder to /etc/configs.d
  provisioner "file" {
    source = "conf/configs.d"
    destination = "/etc"
  }
}