github.com/iaas-resource-provision/iaas-rpc@v1.0.7-0.20211021023331-ed21f798c408/internal/configs/testdata/valid-files/providers-explicit-implied.tf (about)

     1  provider "aws" {
     2  
     3  }
     4  
     5  provider "template" {
     6    alias = "foo"
     7  }
     8  
     9  resource "aws_instance" "foo" {
    10  
    11  }
    12  
    13  resource "null_resource" "foo" {
    14  
    15  }
    16  
    17  terraform {
    18    required_providers {
    19      test = {
    20        source = "hashicorp/test"
    21      }
    22    }
    23  }