mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-01 17:02:38 -05:00
12 lines
151 B
HCL
12 lines
151 B
HCL
provider "aws" {
|
|
}
|
|
|
|
module "mod" {
|
|
source = "./mod"
|
|
|
|
# aws.foo doesn't exist, and should report an error
|
|
providers = {
|
|
aws = aws.foo
|
|
}
|
|
}
|