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