Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b01d64e

Browse files
committed
Add some comments to help people get started with Terraform
1 parent f01c854 commit b01d64e

File tree

1 file changed

+4
-0
lines changed
  • examples/project-with-parameters

1 file changed

+4
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1+
# For interesting types of variables, check out the terraform docs:
2+
# https://www.terraform.io/language/values/variables#declaring-an-input-variable
13
variable "message" {
24
type = string
35
}
46

7+
# And refer to the docs on using expressions to make use of variables:
8+
# https://www.terraform.io/language/expressions/strings#interpolation
59
output "hello_provisioner" {
610
value = "Hello, provisioner: ${var.message}"
711
}

0 commit comments

Comments
 (0)