mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 18:56:57 -05:00
Signed-off-by: Janos Bonic <86970079+janosdebugs@users.noreply.github.com> Co-authored-by: James Humphries <James@james-humphries.co.uk>
12 lines
256 B
HCL
12 lines
256 B
HCL
# Load the main module:
|
|
module "main" {
|
|
source = "../"
|
|
}
|
|
|
|
# Fetch the website so the assert can do its job:
|
|
data "http" "test" {
|
|
url = "http://localhost:8080"
|
|
|
|
# Important! Wait for the main module to finish:
|
|
depends_on = [module.main]
|
|
} |