github.com/muratcelep/terraform@v1.1.0-beta2-not-internal-4/not-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" {}