mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 18:33:08 -04:00
19 lines
295 B
HCL
19 lines
295 B
HCL
|
|
locals {
|
||
|
|
foo = "bar"
|
||
|
|
}
|
||
|
|
|
||
|
|
component "vault-config" {
|
||
|
|
source = "./"
|
||
|
|
inputs = {
|
||
|
|
ssh_key_private = component.boundary.ssh_key_private
|
||
|
|
bar = local.foo
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
component "boundary" {
|
||
|
|
source = "./"
|
||
|
|
inputs = {
|
||
|
|
boundary_vault_token = component.vault-config.boundary_vault_token
|
||
|
|
}
|
||
|
|
}
|