blob: dbf29feef644ad8ba2235690a87c7390925a868b [file] [log] [blame]
module "foo" {
source = "./foo"
# this block intentionally left (almost) blank
}
module "bar" {
source = "hashicorp/bar/aws"
boom = "🎆"
yes = true
}
module "baz" {
source = "git::https://example.com/"
a = 1
count = 12
for_each = ["a", "b", "c"]
depends_on = [
module.bar,
]
providers = {
aws = aws.foo
}
}