Last active
September 16, 2022 07:54
-
-
Save lucamilan/c677f0468db0f6d2d3f23967098ce030 to your computer and use it in GitHub Desktop.
Simple Terraform scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| resource "local_file" "myfile" { | |
| filename = "Readme.md" | |
| content = "# Hello from Terraform sample!" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment