mirror of
https://github.com/hashicorp/terraform.git
synced 2026-05-25 02:40:58 -04:00
15 lines
167 B
HCL
15 lines
167 B
HCL
run "setup" {
|
|
variables {
|
|
password = "password"
|
|
}
|
|
|
|
module {
|
|
source = "./setup"
|
|
}
|
|
}
|
|
|
|
run "test" {
|
|
variables {
|
|
password = run.setup.password
|
|
}
|
|
}
|