mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 18:56:57 -05:00
24 lines
410 B
HCL
24 lines
410 B
HCL
# This is an example test file from a use case requested by a user. We only
|
|
# refer to alternate modules and not the main configuration. This means we
|
|
# shouldn't have to provide any data for the main configuration.
|
|
|
|
run "first" {
|
|
module {
|
|
source = "./example"
|
|
}
|
|
|
|
variables {
|
|
input = "start"
|
|
}
|
|
}
|
|
|
|
run "second" {
|
|
module {
|
|
source = "./example"
|
|
}
|
|
|
|
variables {
|
|
input = "update"
|
|
}
|
|
}
|