mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-15 08:00:36 -05:00
This PR adds iteration through any provider configuration blocks in the config in addProviderRequirements(). A stale comment (of mine!) would leave one expecting the module.ProviderRequirements to include any requirements from provider configs. The comment was inaccurate and has been updated.
12 lines
97 B
HCL
12 lines
97 B
HCL
provider "foo" {
|
|
|
|
}
|
|
|
|
resource "bar_instance" "test" {
|
|
|
|
}
|
|
|
|
provider "baz" {
|
|
version = "1.2.0"
|
|
}
|