mirror of
https://github.com/outbackdingo/terraform-render-bootstrap.git
synced 2026-01-27 10:20:45 +00:00
* Update minimum required versions for `tls`, `template`, and `random`. Older versions have some differing behaviors (e.g. `random` may be missing sensitive fields) and we'd prefer to shake loose any setups still using very old providers than continue allowing them * Remove the upper bound version constraint since providers are more regularly updated these days and require less manual vetting to allow use
11 lines
196 B
HCL
11 lines
196 B
HCL
# Terraform version and plugin versions
|
|
|
|
terraform {
|
|
required_version = ">= 0.13.0, < 2.0.0"
|
|
required_providers {
|
|
random = "~> 3.1"
|
|
template = "~> 2.2"
|
|
tls = "~> 3.1"
|
|
}
|
|
}
|