0
0
llucycodes42
The code defines a TLS private key named "myResourceName". The name, description, and algorithm are all specified. The key is based on the EC curve "P384".
Shortcut: tf_tls_private_key
resource "tls_private_key" "${myResourceName}" {
name = "my-${myResourceName}"
description = "my-description-${myResourceName}"
algorithm = "ECDSA"
ecdsa_curve = "P384"
}