mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
* ephemerals: allow root ephemeral outputs in stacks and test * remember to set new opt for apply stage
28 lines
425 B
HCL
28 lines
425 B
HCL
required_providers {
|
|
testing = {
|
|
source = "hashicorp/testing"
|
|
version = "0.1.0"
|
|
}
|
|
}
|
|
|
|
provider "testing" "main" {}
|
|
|
|
component "ephemeral_out" {
|
|
source = "./ephemeral-output"
|
|
|
|
providers = {
|
|
testing = provider.testing.main
|
|
}
|
|
}
|
|
|
|
component "ephemeral_in" {
|
|
source = "./ephemeral-input"
|
|
|
|
providers = {
|
|
testing = provider.testing.main
|
|
}
|
|
|
|
inputs = {
|
|
input = component.ephemeral_out.value
|
|
}
|
|
}
|