mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 02:20:07 -04:00
We don't need to load the configuration twice, since configload can return the module for us.
17 lines
166 B
HCL
17 lines
166 B
HCL
terraform {
|
|
required_version = ">200.0.0"
|
|
|
|
bad {
|
|
block = "false"
|
|
}
|
|
|
|
required_providers {
|
|
bang = {
|
|
oops = "boom"
|
|
}
|
|
}
|
|
}
|
|
|
|
nope {
|
|
boom {}
|
|
}
|