Files
opentf/website/docs/cli/commands/test/examples/module/test-harness/harness.tf
2023-12-01 08:34:59 +00:00

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]
}