10 lines
114 B
Terraform
10 lines
114 B
Terraform
|
terraform {
|
||
|
required_providers {
|
||
|
foo-test = {
|
||
|
source = "foo/test"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
provider "foo-test" {}
|