versions.tf514 B
View on GitHubterraform {
required_version = ">= 1.0.0"
# Multiple providers so the cache and `cache mirror` have something to chew on.
# All are credential-free and tiny.
required_providers {
random = {
source = "hashicorp/random"
version = ">= 3.0.0"
}
null = {
source = "hashicorp/null"
version = ">= 3.0.0"
}
local = {
source = "hashicorp/local"
version = ">= 2.0.0"
}
tls = {
source = "hashicorp/tls"
version = ">= 4.0.0"
}
}
}