mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-19 07:01:10 -05:00
15 lines
170 B
HCL
15 lines
170 B
HCL
provider "foo" {
|
|
version = "1.2.3"
|
|
}
|
|
|
|
terraform {
|
|
required_providers {
|
|
bar = "1.0.0"
|
|
baz = {
|
|
version = "~> 2.0.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "terraform" { }
|