mirror of
https://github.com/outbackdingo/terraform-render-bootstrap.git
synced 2026-01-27 10:20:45 +00:00
* Remove uses of `key_algorithm` on `tls_self_signed_cert` and `tls_cert_request` resources. The field is deprecated and inferred from the `private_key_pem` * Remove uses of `ca_key_algorithm` on `tls_locally_signed_cert` resources. The field is deprecated and inferred from the `ca_private_key_pem` * Require at least hashicorp/tls provider v3.2 Rel: https://github.com/hashicorp/terraform-provider-tls/blob/main/CHANGELOG.md#320-april-04-2022
10 lines
168 B
HCL
10 lines
168 B
HCL
# Terraform version and plugin versions
|
|
|
|
terraform {
|
|
required_version = ">= 0.13.0, < 2.0.0"
|
|
required_providers {
|
|
random = "~> 3.1"
|
|
tls = "~> 3.2"
|
|
}
|
|
}
|