Skip to content

Commit

Permalink
Merge pull request #9 from Aguafrommars/user/ole
Browse files Browse the repository at this point in the history
fix: validity date was too much
  • Loading branch information
aguacongas authored Apr 4, 2022
2 parents d615130 + a67808f commit c5a220f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions certificates.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ resource "tls_locally_signed_cert" "data_protection" {
ca_private_key_pem = fileexists("cert_request.pem") ? "${file("ca_private_key.pem")}" : "${tls_private_key.ca_private_key.private_key_pem}"
ca_cert_pem = fileexists("ca_cert.pem") ? "${file("ca_cert.pem")}" : "${tls_self_signed_cert.ca.cert_pem}"

validity_period_hours = 8760000
validity_period_hours = 876000

allowed_uses = [
"digital_signature",
Expand All @@ -76,7 +76,7 @@ resource "tls_locally_signed_cert" "signing_key" {
ca_private_key_pem = fileexists("cert_request.pem") ? "${file("ca_private_key.pem")}" : "${tls_private_key.ca_private_key.private_key_pem}"
ca_cert_pem = fileexists("ca_cert.pem") ? "${file("ca_cert.pem")}" : "${tls_self_signed_cert.ca.cert_pem}"

validity_period_hours = 8760000
validity_period_hours = 876000

allowed_uses = [
"digital_signature",
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ variable "chart" {
variable "chart_version" {
type = string
description = "(Optional) The Helm chart version"
default = "4.7.0"
default = "4.8.0"
}

variable "namespace" {
Expand Down

0 comments on commit c5a220f

Please sign in to comment.