14 lines
230 B
Terraform
14 lines
230 B
Terraform
|
terraform {
|
||
|
required_providers {
|
||
|
bar = {
|
||
|
source = "registry.terraform.io/-/bar"
|
||
|
}
|
||
|
baz = {
|
||
|
source = "registry.terraform.io/-/baz"
|
||
|
}
|
||
|
foo = {
|
||
|
source = "registry.terraform.io/-/foo"
|
||
|
}
|
||
|
}
|
||
|
}
|