github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/configs/testdata/provider-reqs-with-tests/provider-reqs-root.tf (about) 1 terraform { 2 required_providers { 3 tls = { 4 source = "hashicorp/tls" 5 version = "~> 3.0" 6 } 7 } 8 } 9 10 # There is no provider in required_providers called "implied", so this 11 # implicitly declares a dependency on "hashicorp/implied". 12 resource "implied_foo" "bar" { 13 } 14 15 # There is no provider in required_providers called "terraform", but for 16 # this name in particular we imply terraform.io/builtin/terraform instead, 17 # to avoid selecting the now-unmaintained 18 # registry.terraform.io/hashicorp/terraform. 19 data "terraform_remote_state" "bar" { 20 }