mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06:00
11 lines
114 B
Terraform
11 lines
114 B
Terraform
|
provider "aws" {
|
||
|
alias = "foo"
|
||
|
}
|
||
|
|
||
|
module "mod" {
|
||
|
source = "./mod"
|
||
|
providers = {
|
||
|
"aws" = "aws.foo"
|
||
|
}
|
||
|
}
|