mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06: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
|
|
}
|
|
}
|