github.com/muratcelep/terraform@v1.1.0-beta2-not-internal-4/not-internal/configs/testdata/invalid-files/module-calls.tf (about) 1 2 module "foo" { 3 source = "./foo" 4 # this block intentionally left (almost) blank 5 } 6 7 module "bar" { 8 source = "hashicorp/bar/aws" 9 10 boom = "🎆" 11 yes = true 12 } 13 14 module "baz" { 15 source = "git::https://example.com/" 16 17 a = 1 18 19 count = 12 20 for_each = ["a", "b", "c"] 21 22 depends_on = [ 23 module.bar, 24 ] 25 26 providers = { 27 aws = aws.foo 28 } 29 }