11 lines
178 B
Terraform
11 lines
178 B
Terraform
|
resource foo_instance a {}
|
||
|
resource bar_instance b {}
|
||
|
|
||
|
terraform {
|
||
|
# Provider requirements go here
|
||
|
required_providers {
|
||
|
# Pin bar to this version
|
||
|
bar = "0.5.0"
|
||
|
}
|
||
|
}
|