doc: Slides demo 10 sept

This commit is contained in:
2025-09-10 12:38:25 -04:00
parent 9b889f71da
commit 9961e8b79d
33 changed files with 531 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
provider "http" {}
data "http" "remote_file" {
url = "http:/example.com/file.txt"
}
resource "local_file" "downloaded_file" {
content = data.http.remote_file.body
filename = "${path.module}/downloaded_file.txt"
}