I needed an exceptionally simple terraform script with no external dependencies, but a variable input... and everything I found during a minute of Googling was overkill. So... "Hello, World." it is.
This is a great test script for blue-horizon.
I needed an exceptionally simple terraform script with no external dependencies, but a variable input... and everything I found during a minute of Googling was overkill. So... "Hello, World." it is.
This is a great test script for blue-horizon.
| output "greeting" { | |
| value = "Hello, ${var.name}." | |
| } |
| { | |
| "variable": { | |
| "name": { | |
| "type": "string", | |
| "description": "Who should terraform greet?", | |
| "default": "World" | |
| } | |
| } | |
| } |