github.com/hashicorp/terraform-plugin-sdk@v1.17.2/internal/configs/testdata/invalid-files/provider-reserved.tf (about)

     1  provider "test" {
     2    # These are okay
     3    alias   = "foo"
     4    version = "1.0.0"
     5  
     6    # Provider-specific arguments are also okay
     7    arbitrary = true
     8  
     9    # These are all reserved and should generate errors.
    10    count      = 3
    11    depends_on = ["foo.bar"]
    12    for_each   = ["a", "b"]
    13    source     = "foo.example.com/baz/bar"
    14    lifecycle {}
    15    locals {}
    16  }