github.com/opentofu/opentofu@v1.7.1/internal/command/testdata/test/missing-provider/main.tf (about)

     1  terraform {
     2    required_providers {
     3      test = {
     4        source = "hashicorp/test"
     5        configuration_aliases = [ test.secondary ]
     6      }
     7    }
     8  }
     9  
    10  resource "test_resource" "primary" {
    11    value = "foo"
    12  }
    13  
    14  resource "test_resource" "secondary" {
    15    provider = test.secondary
    16    value = "bar"
    17  }