mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
18 lines
295 B
HCL
18 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
|
|
}
|
|
}
|