12 lines
146 B
Terraform
12 lines
146 B
Terraform
|
terraform {
|
||
|
required_providers {
|
||
|
baz = "~> 2.0.0"
|
||
|
}
|
||
|
}
|
||
|
terraform {
|
||
|
required_providers {
|
||
|
foo = "0.5"
|
||
|
}
|
||
|
}
|
||
|
resource foo_instance c {}
|