Skip to content

Commit

Permalink
Removing key_algorithm argument seems it is now read-only in the TLS …
Browse files Browse the repository at this point in the history
…provider. Signed-off-by: joscabmar <jacm.legend@gmail.com> (#3)
  • Loading branch information
joscabmar authored Aug 2, 2022
1 parent 7da54fa commit d206f03
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ resource "tls_private_key" "this" {
resource "tls_self_signed_cert" "this" {
count = var.auto_generate_key_cert ? 1 : 0

key_algorithm = "RSA"
private_key_pem = tls_private_key.this.0.private_key_pem

subject {
Expand Down Expand Up @@ -78,4 +77,4 @@ resource "helm_release" "this" {
value = set.value
}
}
}
}

0 comments on commit d206f03

Please sign in to comment.