17 lines
283 B
Terraform
17 lines
283 B
Terraform
|
resource foo_instance a {}
|
||
|
resource bar_instance b {}
|
||
|
|
||
|
terraform {
|
||
|
# Provider requirements go here
|
||
|
required_providers {
|
||
|
# Pin bar to this version
|
||
|
bar = {
|
||
|
source = "hashicorp/bar"
|
||
|
version = "0.5.0"
|
||
|
}
|
||
|
foo = {
|
||
|
source = "hashicorp/foo"
|
||
|
}
|
||
|
}
|
||
|
}
|