Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f01c854 commit b01d64eCopy full SHA for b01d64e
examples/project-with-parameters/main.tf
@@ -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
3
variable "message" {
4
type = string
5
}
6
7
+# And refer to the docs on using expressions to make use of variables:
8
+# https://www.terraform.io/language/expressions/strings#interpolation
9
output "hello_provisioner" {
10
value = "Hello, provisioner: ${var.message}"
11
0 commit comments