1. Packages
  2. Tls Provider
  3. API Docs
  4. PrivateKey
TLS v5.1.1 published on Saturday, Mar 15, 2025 by Pulumi

tls.PrivateKey

Explore with Pulumi AI

Create PrivateKey Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new PrivateKey(name: string, args: PrivateKeyArgs, opts?: CustomResourceOptions);
@overload
def PrivateKey(resource_name: str,
               args: PrivateKeyArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def PrivateKey(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               algorithm: Optional[str] = None,
               ecdsa_curve: Optional[str] = None,
               rsa_bits: Optional[int] = None)
func NewPrivateKey(ctx *Context, name string, args PrivateKeyArgs, opts ...ResourceOption) (*PrivateKey, error)
public PrivateKey(string name, PrivateKeyArgs args, CustomResourceOptions? opts = null)
public PrivateKey(String name, PrivateKeyArgs args)
public PrivateKey(String name, PrivateKeyArgs args, CustomResourceOptions options)
type: tls:PrivateKey
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. PrivateKeyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. PrivateKeyArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. PrivateKeyArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PrivateKeyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. PrivateKeyArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var privateKeyResource = new Tls.PrivateKey("privateKeyResource", new()
{
    Algorithm = "string",
    EcdsaCurve = "string",
    RsaBits = 0,
});
Copy
example, err := tls.NewPrivateKey(ctx, "privateKeyResource", &tls.PrivateKeyArgs{
	Algorithm:  pulumi.String("string"),
	EcdsaCurve: pulumi.String("string"),
	RsaBits:    pulumi.Int(0),
})
Copy
var privateKeyResource = new PrivateKey("privateKeyResource", PrivateKeyArgs.builder()
    .algorithm("string")
    .ecdsaCurve("string")
    .rsaBits(0)
    .build());
Copy
private_key_resource = tls.PrivateKey("privateKeyResource",
    algorithm="string",
    ecdsa_curve="string",
    rsa_bits=0)
Copy
const privateKeyResource = new tls.PrivateKey("privateKeyResource", {
    algorithm: "string",
    ecdsaCurve: "string",
    rsaBits: 0,
});
Copy
type: tls:PrivateKey
properties:
    algorithm: string
    ecdsaCurve: string
    rsaBits: 0
Copy

PrivateKey Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The PrivateKey resource accepts the following input properties:

Algorithm This property is required. string
Name of the algorithm to use when generating the private key. Currently-supported values are: RSA, ECDSA, ED25519.
EcdsaCurve string
When algorithm is ECDSA, the name of the elliptic curve to use. Currently-supported values are: P224, P256, P384, P521. (default: P224).
RsaBits int
When algorithm is RSA, the size of the generated RSA key, in bits (default: 2048).
Algorithm This property is required. string
Name of the algorithm to use when generating the private key. Currently-supported values are: RSA, ECDSA, ED25519.
EcdsaCurve string
When algorithm is ECDSA, the name of the elliptic curve to use. Currently-supported values are: P224, P256, P384, P521. (default: P224).
RsaBits int
When algorithm is RSA, the size of the generated RSA key, in bits (default: 2048).
algorithm This property is required. String
Name of the algorithm to use when generating the private key. Currently-supported values are: RSA, ECDSA, ED25519.
ecdsaCurve String
When algorithm is ECDSA, the name of the elliptic curve to use. Currently-supported values are: P224, P256, P384, P521. (default: P224).
rsaBits Integer
When algorithm is RSA, the size of the generated RSA key, in bits (default: 2048).
algorithm This property is required. string
Name of the algorithm to use when generating the private key. Currently-supported values are: RSA, ECDSA, ED25519.
ecdsaCurve string
When algorithm is ECDSA, the name of the elliptic curve to use. Currently-supported values are: P224, P256, P384, P521. (default: P224).
rsaBits number
When algorithm is RSA, the size of the generated RSA key, in bits (default: 2048).
algorithm This property is required. str
Name of the algorithm to use when generating the private key. Currently-supported values are: RSA, ECDSA, ED25519.
ecdsa_curve str
When algorithm is ECDSA, the name of the elliptic curve to use. Currently-supported values are: P224, P256, P384, P521. (default: P224).
rsa_bits int
When algorithm is RSA, the size of the generated RSA key, in bits (default: 2048).
algorithm This property is required. String
Name of the algorithm to use when generating the private key. Currently-supported values are: RSA, ECDSA, ED25519.
ecdsaCurve String
When algorithm is ECDSA, the name of the elliptic curve to use. Currently-supported values are: P224, P256, P384, P521. (default: P224).
rsaBits Number
When algorithm is RSA, the size of the generated RSA key, in bits (default: 2048).

Outputs

All input properties are implicitly available as output properties. Additionally, the PrivateKey resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
PrivateKeyOpenssh string
Private key data in OpenSSH PEM (RFC 4716) format.
PrivateKeyPem string
Private key data in PEM (RFC 1421) format.
PrivateKeyPemPkcs8 string
Private key data in PKCS#8 PEM (RFC 5208) format.
PublicKeyFingerprintMd5 string
The fingerprint of the public key data in OpenSSH MD5 hash format, e.g. aa:bb:cc:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
PublicKeyFingerprintSha256 string
The fingerprint of the public key data in OpenSSH SHA256 hash format, e.g. SHA256:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
PublicKeyOpenssh string
The public key data in "Authorized Keys" format. This is not populated for ECDSA with curve P224, as it is not supported. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
PublicKeyPem string
Public key data in PEM (RFC 1421) format. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
Id string
The provider-assigned unique ID for this managed resource.
PrivateKeyOpenssh string
Private key data in OpenSSH PEM (RFC 4716) format.
PrivateKeyPem string
Private key data in PEM (RFC 1421) format.
PrivateKeyPemPkcs8 string
Private key data in PKCS#8 PEM (RFC 5208) format.
PublicKeyFingerprintMd5 string
The fingerprint of the public key data in OpenSSH MD5 hash format, e.g. aa:bb:cc:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
PublicKeyFingerprintSha256 string
The fingerprint of the public key data in OpenSSH SHA256 hash format, e.g. SHA256:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
PublicKeyOpenssh string
The public key data in "Authorized Keys" format. This is not populated for ECDSA with curve P224, as it is not supported. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
PublicKeyPem string
Public key data in PEM (RFC 1421) format. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
id String
The provider-assigned unique ID for this managed resource.
privateKeyOpenssh String
Private key data in OpenSSH PEM (RFC 4716) format.
privateKeyPem String
Private key data in PEM (RFC 1421) format.
privateKeyPemPkcs8 String
Private key data in PKCS#8 PEM (RFC 5208) format.
publicKeyFingerprintMd5 String
The fingerprint of the public key data in OpenSSH MD5 hash format, e.g. aa:bb:cc:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
publicKeyFingerprintSha256 String
The fingerprint of the public key data in OpenSSH SHA256 hash format, e.g. SHA256:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
publicKeyOpenssh String
The public key data in "Authorized Keys" format. This is not populated for ECDSA with curve P224, as it is not supported. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
publicKeyPem String
Public key data in PEM (RFC 1421) format. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
id string
The provider-assigned unique ID for this managed resource.
privateKeyOpenssh string
Private key data in OpenSSH PEM (RFC 4716) format.
privateKeyPem string
Private key data in PEM (RFC 1421) format.
privateKeyPemPkcs8 string
Private key data in PKCS#8 PEM (RFC 5208) format.
publicKeyFingerprintMd5 string
The fingerprint of the public key data in OpenSSH MD5 hash format, e.g. aa:bb:cc:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
publicKeyFingerprintSha256 string
The fingerprint of the public key data in OpenSSH SHA256 hash format, e.g. SHA256:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
publicKeyOpenssh string
The public key data in "Authorized Keys" format. This is not populated for ECDSA with curve P224, as it is not supported. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
publicKeyPem string
Public key data in PEM (RFC 1421) format. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
id str
The provider-assigned unique ID for this managed resource.
private_key_openssh str
Private key data in OpenSSH PEM (RFC 4716) format.
private_key_pem str
Private key data in PEM (RFC 1421) format.
private_key_pem_pkcs8 str
Private key data in PKCS#8 PEM (RFC 5208) format.
public_key_fingerprint_md5 str
The fingerprint of the public key data in OpenSSH MD5 hash format, e.g. aa:bb:cc:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
public_key_fingerprint_sha256 str
The fingerprint of the public key data in OpenSSH SHA256 hash format, e.g. SHA256:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
public_key_openssh str
The public key data in "Authorized Keys" format. This is not populated for ECDSA with curve P224, as it is not supported. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
public_key_pem str
Public key data in PEM (RFC 1421) format. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
id String
The provider-assigned unique ID for this managed resource.
privateKeyOpenssh String
Private key data in OpenSSH PEM (RFC 4716) format.
privateKeyPem String
Private key data in PEM (RFC 1421) format.
privateKeyPemPkcs8 String
Private key data in PKCS#8 PEM (RFC 5208) format.
publicKeyFingerprintMd5 String
The fingerprint of the public key data in OpenSSH MD5 hash format, e.g. aa:bb:cc:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
publicKeyFingerprintSha256 String
The fingerprint of the public key data in OpenSSH SHA256 hash format, e.g. SHA256:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
publicKeyOpenssh String
The public key data in "Authorized Keys" format. This is not populated for ECDSA with curve P224, as it is not supported. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
publicKeyPem String
Public key data in PEM (RFC 1421) format. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().

Look up Existing PrivateKey Resource

Get an existing PrivateKey resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: PrivateKeyState, opts?: CustomResourceOptions): PrivateKey
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        algorithm: Optional[str] = None,
        ecdsa_curve: Optional[str] = None,
        private_key_openssh: Optional[str] = None,
        private_key_pem: Optional[str] = None,
        private_key_pem_pkcs8: Optional[str] = None,
        public_key_fingerprint_md5: Optional[str] = None,
        public_key_fingerprint_sha256: Optional[str] = None,
        public_key_openssh: Optional[str] = None,
        public_key_pem: Optional[str] = None,
        rsa_bits: Optional[int] = None) -> PrivateKey
func GetPrivateKey(ctx *Context, name string, id IDInput, state *PrivateKeyState, opts ...ResourceOption) (*PrivateKey, error)
public static PrivateKey Get(string name, Input<string> id, PrivateKeyState? state, CustomResourceOptions? opts = null)
public static PrivateKey get(String name, Output<String> id, PrivateKeyState state, CustomResourceOptions options)
resources:  _:    type: tls:PrivateKey    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Algorithm string
Name of the algorithm to use when generating the private key. Currently-supported values are: RSA, ECDSA, ED25519.
EcdsaCurve string
When algorithm is ECDSA, the name of the elliptic curve to use. Currently-supported values are: P224, P256, P384, P521. (default: P224).
PrivateKeyOpenssh string
Private key data in OpenSSH PEM (RFC 4716) format.
PrivateKeyPem string
Private key data in PEM (RFC 1421) format.
PrivateKeyPemPkcs8 string
Private key data in PKCS#8 PEM (RFC 5208) format.
PublicKeyFingerprintMd5 string
The fingerprint of the public key data in OpenSSH MD5 hash format, e.g. aa:bb:cc:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
PublicKeyFingerprintSha256 string
The fingerprint of the public key data in OpenSSH SHA256 hash format, e.g. SHA256:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
PublicKeyOpenssh string
The public key data in "Authorized Keys" format. This is not populated for ECDSA with curve P224, as it is not supported. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
PublicKeyPem string
Public key data in PEM (RFC 1421) format. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
RsaBits int
When algorithm is RSA, the size of the generated RSA key, in bits (default: 2048).
Algorithm string
Name of the algorithm to use when generating the private key. Currently-supported values are: RSA, ECDSA, ED25519.
EcdsaCurve string
When algorithm is ECDSA, the name of the elliptic curve to use. Currently-supported values are: P224, P256, P384, P521. (default: P224).
PrivateKeyOpenssh string
Private key data in OpenSSH PEM (RFC 4716) format.
PrivateKeyPem string
Private key data in PEM (RFC 1421) format.
PrivateKeyPemPkcs8 string
Private key data in PKCS#8 PEM (RFC 5208) format.
PublicKeyFingerprintMd5 string
The fingerprint of the public key data in OpenSSH MD5 hash format, e.g. aa:bb:cc:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
PublicKeyFingerprintSha256 string
The fingerprint of the public key data in OpenSSH SHA256 hash format, e.g. SHA256:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
PublicKeyOpenssh string
The public key data in "Authorized Keys" format. This is not populated for ECDSA with curve P224, as it is not supported. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
PublicKeyPem string
Public key data in PEM (RFC 1421) format. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
RsaBits int
When algorithm is RSA, the size of the generated RSA key, in bits (default: 2048).
algorithm String
Name of the algorithm to use when generating the private key. Currently-supported values are: RSA, ECDSA, ED25519.
ecdsaCurve String
When algorithm is ECDSA, the name of the elliptic curve to use. Currently-supported values are: P224, P256, P384, P521. (default: P224).
privateKeyOpenssh String
Private key data in OpenSSH PEM (RFC 4716) format.
privateKeyPem String
Private key data in PEM (RFC 1421) format.
privateKeyPemPkcs8 String
Private key data in PKCS#8 PEM (RFC 5208) format.
publicKeyFingerprintMd5 String
The fingerprint of the public key data in OpenSSH MD5 hash format, e.g. aa:bb:cc:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
publicKeyFingerprintSha256 String
The fingerprint of the public key data in OpenSSH SHA256 hash format, e.g. SHA256:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
publicKeyOpenssh String
The public key data in "Authorized Keys" format. This is not populated for ECDSA with curve P224, as it is not supported. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
publicKeyPem String
Public key data in PEM (RFC 1421) format. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
rsaBits Integer
When algorithm is RSA, the size of the generated RSA key, in bits (default: 2048).
algorithm string
Name of the algorithm to use when generating the private key. Currently-supported values are: RSA, ECDSA, ED25519.
ecdsaCurve string
When algorithm is ECDSA, the name of the elliptic curve to use. Currently-supported values are: P224, P256, P384, P521. (default: P224).
privateKeyOpenssh string
Private key data in OpenSSH PEM (RFC 4716) format.
privateKeyPem string
Private key data in PEM (RFC 1421) format.
privateKeyPemPkcs8 string
Private key data in PKCS#8 PEM (RFC 5208) format.
publicKeyFingerprintMd5 string
The fingerprint of the public key data in OpenSSH MD5 hash format, e.g. aa:bb:cc:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
publicKeyFingerprintSha256 string
The fingerprint of the public key data in OpenSSH SHA256 hash format, e.g. SHA256:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
publicKeyOpenssh string
The public key data in "Authorized Keys" format. This is not populated for ECDSA with curve P224, as it is not supported. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
publicKeyPem string
Public key data in PEM (RFC 1421) format. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
rsaBits number
When algorithm is RSA, the size of the generated RSA key, in bits (default: 2048).
algorithm str
Name of the algorithm to use when generating the private key. Currently-supported values are: RSA, ECDSA, ED25519.
ecdsa_curve str
When algorithm is ECDSA, the name of the elliptic curve to use. Currently-supported values are: P224, P256, P384, P521. (default: P224).
private_key_openssh str
Private key data in OpenSSH PEM (RFC 4716) format.
private_key_pem str
Private key data in PEM (RFC 1421) format.
private_key_pem_pkcs8 str
Private key data in PKCS#8 PEM (RFC 5208) format.
public_key_fingerprint_md5 str
The fingerprint of the public key data in OpenSSH MD5 hash format, e.g. aa:bb:cc:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
public_key_fingerprint_sha256 str
The fingerprint of the public key data in OpenSSH SHA256 hash format, e.g. SHA256:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
public_key_openssh str
The public key data in "Authorized Keys" format. This is not populated for ECDSA with curve P224, as it is not supported. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
public_key_pem str
Public key data in PEM (RFC 1421) format. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
rsa_bits int
When algorithm is RSA, the size of the generated RSA key, in bits (default: 2048).
algorithm String
Name of the algorithm to use when generating the private key. Currently-supported values are: RSA, ECDSA, ED25519.
ecdsaCurve String
When algorithm is ECDSA, the name of the elliptic curve to use. Currently-supported values are: P224, P256, P384, P521. (default: P224).
privateKeyOpenssh String
Private key data in OpenSSH PEM (RFC 4716) format.
privateKeyPem String
Private key data in PEM (RFC 1421) format.
privateKeyPemPkcs8 String
Private key data in PKCS#8 PEM (RFC 5208) format.
publicKeyFingerprintMd5 String
The fingerprint of the public key data in OpenSSH MD5 hash format, e.g. aa:bb:cc:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
publicKeyFingerprintSha256 String
The fingerprint of the public key data in OpenSSH SHA256 hash format, e.g. SHA256:.... Only available if the selected private key format is compatible, similarly to public_key_openssh and the ECDSA P224 limitations.
publicKeyOpenssh String
The public key data in "Authorized Keys" format. This is not populated for ECDSA with curve P224, as it is not supported. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
publicKeyPem String
Public key data in PEM (RFC 1421) format. NOTE: the underlying libraries that generate this value append a \n at the end of the PEM. In case this disrupts your use case, we recommend using trimspace().
rsaBits Number
When algorithm is RSA, the size of the generated RSA key, in bits (default: 2048).

Package Details

Repository
TLS pulumi/pulumi-tls
License
Apache-2.0
Notes
This Pulumi package is based on the tls Terraform Provider.