mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-17 12:12:59 -06:00
e524d1eb95
This test is intended to be an easy-to-maintain catalog of good examples that we can use to catch certain parsing or decoding regressions easily. It's not a fully-comprehensive test since it doesn't check the result of decoding, instead just accepting any decode that completes without errors. However, an easy-to-maintain test like this is a good complement to some more specialized tests since we can easily collect good examples over time and just add them in here.
16 lines
127 B
HCL
16 lines
127 B
HCL
|
|
provider "foo" {
|
|
}
|
|
|
|
provider "bar" {
|
|
version = ">= 1.0.2"
|
|
|
|
other = 12
|
|
}
|
|
|
|
provider "bar" {
|
|
other = 13
|
|
|
|
alias = "bar"
|
|
}
|