Releases: simplecatsoftware/terraform-provider-remotefile
Releases · simplecatsoftware/terraform-provider-remotefile
Release 1.0.1
Mainly automation stuff
- Robust CI
- Automated release candidates
Release 1.0.0
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 filesfile://
for local fileshttp://
orhttps://
for http files