shihanng / terraform-provider-installer

A Terraform provider to setup development environment machine.
https://registry.terraform.io/providers/shihanng/installer/latest/docs
MIT License
11 stars 3 forks source link

New resource to create file using stdout #44

Open shihanng opened 1 year ago

shihanng commented 1 year ago

The following configuration should create file ~/foo.bar with test as content.

resource "local_file" "foo" {
  cmd  = "echo 'test'"
  filename = "~/foo.bar"
}

It should handle expanding $HOME and ~.