Skip to content

Releases: simplecatsoftware/terraform-provider-remotefile

Release 1.0.1

12 Jan 22:35
cc1dad9
Compare
Choose a tag to compare

Mainly automation stuff

  • Robust CI
  • Automated release candidates

Release 1.0.0

12 Jan 21:54
5d2b538
Compare
Choose a tag to compare

Implements remotefile_read for local, temporary and HTTP files.

data "remotefile_read" "file" {
    source = "http://example.com/index.html" # remote http file
    source = "tmp://*debug.log" # local temporary file
    source = "file:///etc/hosts" # local file
}
  • tmp:// for temporary files
  • file:// for local files
  • http:// or https:// for http files