github.com/graywolf-at-work-2/terraform-vendor@v1.4.5/internal/configs/testdata/valid-modules/implied-providers/resources.tf (about)

     1  // These resources map to the configured "foo" provider"
     2  resource foo_resource "a" {}
     3  data foo_resource "b" {}
     4  
     5  // These resources map to a default "hashicorp/bar" provider
     6  resource bar_resource "c" {}
     7  data bar_resource "d" {}
     8  
     9  // These resources map to the configured "whatever" provider, which has FQN
    10  // "acme/something".
    11  resource whatever_resource "e" {}
    12  data whatever_resource "f" {}