mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-15 19:22:46 -06:00
26 lines
302 B
HCL
26 lines
302 B
HCL
|
|
output "foo" {
|
|
value = "hello"
|
|
}
|
|
|
|
output "bar" {
|
|
value = local.bar
|
|
}
|
|
|
|
output "baz" {
|
|
value = "ssshhhhhhh"
|
|
sensitive = true
|
|
}
|
|
|
|
output "cheeze_pizza" {
|
|
description = "Nothing special"
|
|
value = "🍕"
|
|
}
|
|
|
|
output "π" {
|
|
value = 3.14159265359
|
|
depends_on = [
|
|
pizza.cheese,
|
|
]
|
|
}
|