Add a new warning when a provider cannot be downloaded and it was requested by an implicit usage (#2479)

Signed-off-by: yottta <andrei.ciobanu@opentofu.org>
Co-authored-by: AbstractionFactory <179820029+abstractionfactory@users.noreply.github.com>
This commit is contained in:
Andrei Ciobanu
2025-02-12 18:40:54 +02:00
committed by GitHub
parent 5ff40ae505
commit dfe2876931
13 changed files with 313 additions and 23 deletions

View File

@@ -0,0 +1,10 @@
# This is for testing that the implicitly defined providers cannot be fetched and the user is getting an info of the root cause
resource "nonexistingProv_res" "test1" {
}
data "nonexistingProv2_data" "test2" {
}
module "testmod" {
source = "./mod"
}

View File

@@ -0,0 +1,2 @@
resource "nonexistingProv_res" "test2" {
}