mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
19 lines
235 B
HCL
19 lines
235 B
HCL
stack "sensitive" {
|
|
source = "../sensitive-output"
|
|
|
|
inputs = {
|
|
}
|
|
}
|
|
|
|
component "self" {
|
|
source = "./"
|
|
|
|
inputs = {
|
|
secret = stack.sensitive.result
|
|
}
|
|
}
|
|
|
|
output "result" {
|
|
type = string
|
|
value = component.self.result
|
|
}
|