published on Tuesday, May 26, 2026 by Piers Karsenbarg
published on Tuesday, May 26, 2026 by Piers Karsenbarg
Update the SSL certificate for a specific cluster. To update the SSL certificate for a specific cluster, you must provide a valid certificate payload in Base64 format. You can either import a new SSL certificate or replace an existing one by supplying all necessary fields, including the Base64-encoded certificate and private key. Alternatively, you can regenerate a self-signed certificate by specifying the privateKeyAlgorithm, noting that only the RSA_2048 algorithm is supported for SSL certificate regeneration. This process helps maintain the security and integrity of your cluster’s communications by allowing you to update or regenerate the SSL certificate as needed.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";
import * as std from "@pulumi/std";
const _this = new nutanix.SslCertificateV2("this", {
clusterExtId: "6a68ecf4-8cac-42b3-9805-3186c2cecbd2",
passphrase: "password",
privateKey: std.base64encode({
input: "private_key",
}).then(invoke => invoke.result),
publicCertificate: std.base64encode({
input: "public_certificate",
}).then(invoke => invoke.result),
caChain: std.base64encode({
input: "ca_chain",
}).then(invoke => invoke.result),
privateKeyAlgorithm: "RSA_2048",
});
import pulumi
import pulumi_nutanix as nutanix
import pulumi_std as std
this = nutanix.SslCertificateV2("this",
cluster_ext_id="6a68ecf4-8cac-42b3-9805-3186c2cecbd2",
passphrase="password",
private_key=std.base64encode(input="private_key").result,
public_certificate=std.base64encode(input="public_certificate").result,
ca_chain=std.base64encode(input="ca_chain").result,
private_key_algorithm="RSA_2048")
package main
import (
"github.com/pierskarsenbarg/pulumi-nutanix/sdk/go/nutanix"
"github.com/pulumi/pulumi-std/sdk/v2/go/std"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
invokeBase64encode, err := std.Base64encode(ctx, &std.Base64encodeArgs{
Input: "private_key",
}, nil)
if err != nil {
return err
}
invokeBase64encode1, err := std.Base64encode(ctx, &std.Base64encodeArgs{
Input: "public_certificate",
}, nil)
if err != nil {
return err
}
invokeBase64encode2, err := std.Base64encode(ctx, &std.Base64encodeArgs{
Input: "ca_chain",
}, nil)
if err != nil {
return err
}
_, err = nutanix.NewSslCertificateV2(ctx, "this", &nutanix.SslCertificateV2Args{
ClusterExtId: pulumi.String("6a68ecf4-8cac-42b3-9805-3186c2cecbd2"),
Passphrase: pulumi.String("password"),
PrivateKey: pulumi.String(invokeBase64encode.Result),
PublicCertificate: pulumi.String(invokeBase64encode1.Result),
CaChain: pulumi.String(invokeBase64encode2.Result),
PrivateKeyAlgorithm: pulumi.String("RSA_2048"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nutanix = PiersKarsenbarg.Nutanix;
using Std = Pulumi.Std;
return await Deployment.RunAsync(() =>
{
var @this = new Nutanix.SslCertificateV2("this", new()
{
ClusterExtId = "6a68ecf4-8cac-42b3-9805-3186c2cecbd2",
Passphrase = "password",
PrivateKey = Std.Base64encode.Invoke(new()
{
Input = "private_key",
}).Apply(invoke => invoke.Result),
PublicCertificate = Std.Base64encode.Invoke(new()
{
Input = "public_certificate",
}).Apply(invoke => invoke.Result),
CaChain = Std.Base64encode.Invoke(new()
{
Input = "ca_chain",
}).Apply(invoke => invoke.Result),
PrivateKeyAlgorithm = "RSA_2048",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.SslCertificateV2;
import com.pulumi.nutanix.SslCertificateV2Args;
import com.pulumi.std.StdFunctions;
import com.pulumi.std.inputs.Base64encodeArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var this_ = new SslCertificateV2("this", SslCertificateV2Args.builder()
.clusterExtId("6a68ecf4-8cac-42b3-9805-3186c2cecbd2")
.passphrase("password")
.privateKey(StdFunctions.base64encode(Base64encodeArgs.builder()
.input("private_key")
.build()).result())
.publicCertificate(StdFunctions.base64encode(Base64encodeArgs.builder()
.input("public_certificate")
.build()).result())
.caChain(StdFunctions.base64encode(Base64encodeArgs.builder()
.input("ca_chain")
.build()).result())
.privateKeyAlgorithm("RSA_2048")
.build());
}
}
resources:
this:
type: nutanix:SslCertificateV2
properties:
clusterExtId: 6a68ecf4-8cac-42b3-9805-3186c2cecbd2
passphrase: password
privateKey:
fn::invoke:
function: std:base64encode
arguments:
input: private_key
return: result
publicCertificate:
fn::invoke:
function: std:base64encode
arguments:
input: public_certificate
return: result
caChain:
fn::invoke:
function: std:base64encode
arguments:
input: ca_chain
return: result
privateKeyAlgorithm: RSA_2048
pulumi {
required_providers {
nutanix = {
source = "pulumi/nutanix"
}
std = {
source = "pulumi/std"
}
}
}
resource "nutanix_sslcertificatev2" "this" {
cluster_ext_id = "6a68ecf4-8cac-42b3-9805-3186c2cecbd2"
passphrase = "password"
private_key = base64encode("private_key")
public_certificate = base64encode("public_certificate")
ca_chain = base64encode("ca_chain")
private_key_algorithm = "RSA_2048"
}
API Reference
See detailed information in Nutanix SSL Certificate v4
Create SslCertificateV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SslCertificateV2(name: string, args: SslCertificateV2Args, opts?: CustomResourceOptions);@overload
def SslCertificateV2(resource_name: str,
args: SslCertificateV2Args,
opts: Optional[ResourceOptions] = None)
@overload
def SslCertificateV2(resource_name: str,
opts: Optional[ResourceOptions] = None,
cluster_ext_id: Optional[str] = None,
ca_chain: Optional[str] = None,
passphrase: Optional[str] = None,
private_key: Optional[str] = None,
private_key_algorithm: Optional[str] = None,
public_certificate: Optional[str] = None)func NewSslCertificateV2(ctx *Context, name string, args SslCertificateV2Args, opts ...ResourceOption) (*SslCertificateV2, error)public SslCertificateV2(string name, SslCertificateV2Args args, CustomResourceOptions? opts = null)
public SslCertificateV2(String name, SslCertificateV2Args args)
public SslCertificateV2(String name, SslCertificateV2Args args, CustomResourceOptions options)
type: nutanix:SslCertificateV2
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "nutanix_sslcertificatev2" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args SslCertificateV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SslCertificateV2Args
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SslCertificateV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SslCertificateV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SslCertificateV2Args
- 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 sslCertificateV2Resource = new Nutanix.SslCertificateV2("sslCertificateV2Resource", new()
{
ClusterExtId = "string",
CaChain = "string",
Passphrase = "string",
PrivateKey = "string",
PrivateKeyAlgorithm = "string",
PublicCertificate = "string",
});
example, err := nutanix.NewSslCertificateV2(ctx, "sslCertificateV2Resource", &nutanix.SslCertificateV2Args{
ClusterExtId: pulumi.String("string"),
CaChain: pulumi.String("string"),
Passphrase: pulumi.String("string"),
PrivateKey: pulumi.String("string"),
PrivateKeyAlgorithm: pulumi.String("string"),
PublicCertificate: pulumi.String("string"),
})
resource "nutanix_sslcertificatev2" "sslCertificateV2Resource" {
cluster_ext_id = "string"
ca_chain = "string"
passphrase = "string"
private_key = "string"
private_key_algorithm = "string"
public_certificate = "string"
}
var sslCertificateV2Resource = new SslCertificateV2("sslCertificateV2Resource", SslCertificateV2Args.builder()
.clusterExtId("string")
.caChain("string")
.passphrase("string")
.privateKey("string")
.privateKeyAlgorithm("string")
.publicCertificate("string")
.build());
ssl_certificate_v2_resource = nutanix.SslCertificateV2("sslCertificateV2Resource",
cluster_ext_id="string",
ca_chain="string",
passphrase="string",
private_key="string",
private_key_algorithm="string",
public_certificate="string")
const sslCertificateV2Resource = new nutanix.SslCertificateV2("sslCertificateV2Resource", {
clusterExtId: "string",
caChain: "string",
passphrase: "string",
privateKey: "string",
privateKeyAlgorithm: "string",
publicCertificate: "string",
});
type: nutanix:SslCertificateV2
properties:
caChain: string
clusterExtId: string
passphrase: string
privateKey: string
privateKeyAlgorithm: string
publicCertificate: string
SslCertificateV2 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 SslCertificateV2 resource accepts the following input properties:
- Cluster
Ext stringId - — UUID of the cluster to which the host NIC belongs.
- Ca
Chain string - — Description of the certificate authority (CA) chain.
- Passphrase string
- — Passphrase used for SSL certificate.
- Private
Key string - — Private Key used for SSL certificate.
- Private
Key stringAlgorithm - — Private Key Algorithm used for SSL certificate.
Enum Description ECDSA_256 Elliptic Curve Digital Signature Algorithm (256-bit) ECDSA_384 Elliptic Curve Digital Signature Algorithm (384-bit) ECDSA_521 Elliptic Curve Digital Signature Algorithm (521-bit) JKS Java KeyStore (JKS) format KRB_KEYTAB Kerberos Keytab format PKCS12 PKCS#12 format for certificate storage RSA_2048 RSA 2048-bit encryption RSA_4096 RSA 4096-bit encryption RSA_PUBLIC Public RSA key format - Public
Certificate string - — Public Certificate used for SSL certificate.
- Cluster
Ext stringId - — UUID of the cluster to which the host NIC belongs.
- Ca
Chain string - — Description of the certificate authority (CA) chain.
- Passphrase string
- — Passphrase used for SSL certificate.
- Private
Key string - — Private Key used for SSL certificate.
- Private
Key stringAlgorithm - — Private Key Algorithm used for SSL certificate.
Enum Description ECDSA_256 Elliptic Curve Digital Signature Algorithm (256-bit) ECDSA_384 Elliptic Curve Digital Signature Algorithm (384-bit) ECDSA_521 Elliptic Curve Digital Signature Algorithm (521-bit) JKS Java KeyStore (JKS) format KRB_KEYTAB Kerberos Keytab format PKCS12 PKCS#12 format for certificate storage RSA_2048 RSA 2048-bit encryption RSA_4096 RSA 4096-bit encryption RSA_PUBLIC Public RSA key format - Public
Certificate string - — Public Certificate used for SSL certificate.
- cluster_
ext_ stringid - — UUID of the cluster to which the host NIC belongs.
- ca_
chain string - — Description of the certificate authority (CA) chain.
- passphrase string
- — Passphrase used for SSL certificate.
- private_
key string - — Private Key used for SSL certificate.
- private_
key_ stringalgorithm - — Private Key Algorithm used for SSL certificate.
Enum Description ECDSA_256 Elliptic Curve Digital Signature Algorithm (256-bit) ECDSA_384 Elliptic Curve Digital Signature Algorithm (384-bit) ECDSA_521 Elliptic Curve Digital Signature Algorithm (521-bit) JKS Java KeyStore (JKS) format KRB_KEYTAB Kerberos Keytab format PKCS12 PKCS#12 format for certificate storage RSA_2048 RSA 2048-bit encryption RSA_4096 RSA 4096-bit encryption RSA_PUBLIC Public RSA key format - public_
certificate string - — Public Certificate used for SSL certificate.
- cluster
Ext StringId - — UUID of the cluster to which the host NIC belongs.
- ca
Chain String - — Description of the certificate authority (CA) chain.
- passphrase String
- — Passphrase used for SSL certificate.
- private
Key String - — Private Key used for SSL certificate.
- private
Key StringAlgorithm - — Private Key Algorithm used for SSL certificate.
Enum Description ECDSA_256 Elliptic Curve Digital Signature Algorithm (256-bit) ECDSA_384 Elliptic Curve Digital Signature Algorithm (384-bit) ECDSA_521 Elliptic Curve Digital Signature Algorithm (521-bit) JKS Java KeyStore (JKS) format KRB_KEYTAB Kerberos Keytab format PKCS12 PKCS#12 format for certificate storage RSA_2048 RSA 2048-bit encryption RSA_4096 RSA 4096-bit encryption RSA_PUBLIC Public RSA key format - public
Certificate String - — Public Certificate used for SSL certificate.
- cluster
Ext stringId - — UUID of the cluster to which the host NIC belongs.
- ca
Chain string - — Description of the certificate authority (CA) chain.
- passphrase string
- — Passphrase used for SSL certificate.
- private
Key string - — Private Key used for SSL certificate.
- private
Key stringAlgorithm - — Private Key Algorithm used for SSL certificate.
Enum Description ECDSA_256 Elliptic Curve Digital Signature Algorithm (256-bit) ECDSA_384 Elliptic Curve Digital Signature Algorithm (384-bit) ECDSA_521 Elliptic Curve Digital Signature Algorithm (521-bit) JKS Java KeyStore (JKS) format KRB_KEYTAB Kerberos Keytab format PKCS12 PKCS#12 format for certificate storage RSA_2048 RSA 2048-bit encryption RSA_4096 RSA 4096-bit encryption RSA_PUBLIC Public RSA key format - public
Certificate string - — Public Certificate used for SSL certificate.
- cluster_
ext_ strid - — UUID of the cluster to which the host NIC belongs.
- ca_
chain str - — Description of the certificate authority (CA) chain.
- passphrase str
- — Passphrase used for SSL certificate.
- private_
key str - — Private Key used for SSL certificate.
- private_
key_ stralgorithm - — Private Key Algorithm used for SSL certificate.
Enum Description ECDSA_256 Elliptic Curve Digital Signature Algorithm (256-bit) ECDSA_384 Elliptic Curve Digital Signature Algorithm (384-bit) ECDSA_521 Elliptic Curve Digital Signature Algorithm (521-bit) JKS Java KeyStore (JKS) format KRB_KEYTAB Kerberos Keytab format PKCS12 PKCS#12 format for certificate storage RSA_2048 RSA 2048-bit encryption RSA_4096 RSA 4096-bit encryption RSA_PUBLIC Public RSA key format - public_
certificate str - — Public Certificate used for SSL certificate.
- cluster
Ext StringId - — UUID of the cluster to which the host NIC belongs.
- ca
Chain String - — Description of the certificate authority (CA) chain.
- passphrase String
- — Passphrase used for SSL certificate.
- private
Key String - — Private Key used for SSL certificate.
- private
Key StringAlgorithm - — Private Key Algorithm used for SSL certificate.
Enum Description ECDSA_256 Elliptic Curve Digital Signature Algorithm (256-bit) ECDSA_384 Elliptic Curve Digital Signature Algorithm (384-bit) ECDSA_521 Elliptic Curve Digital Signature Algorithm (521-bit) JKS Java KeyStore (JKS) format KRB_KEYTAB Kerberos Keytab format PKCS12 PKCS#12 format for certificate storage RSA_2048 RSA 2048-bit encryption RSA_4096 RSA 4096-bit encryption RSA_PUBLIC Public RSA key format - public
Certificate String - — Public Certificate used for SSL certificate.
Outputs
All input properties are implicitly available as output properties. Additionally, the SslCertificateV2 resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing SslCertificateV2 Resource
Get an existing SslCertificateV2 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?: SslCertificateV2State, opts?: CustomResourceOptions): SslCertificateV2@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
ca_chain: Optional[str] = None,
cluster_ext_id: Optional[str] = None,
passphrase: Optional[str] = None,
private_key: Optional[str] = None,
private_key_algorithm: Optional[str] = None,
public_certificate: Optional[str] = None) -> SslCertificateV2func GetSslCertificateV2(ctx *Context, name string, id IDInput, state *SslCertificateV2State, opts ...ResourceOption) (*SslCertificateV2, error)public static SslCertificateV2 Get(string name, Input<string> id, SslCertificateV2State? state, CustomResourceOptions? opts = null)public static SslCertificateV2 get(String name, Output<String> id, SslCertificateV2State state, CustomResourceOptions options)resources: _: type: nutanix:SslCertificateV2 get: id: ${id}import {
to = nutanix_sslcertificatev2.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Ca
Chain string - — Description of the certificate authority (CA) chain.
- Cluster
Ext stringId - — UUID of the cluster to which the host NIC belongs.
- Passphrase string
- — Passphrase used for SSL certificate.
- Private
Key string - — Private Key used for SSL certificate.
- Private
Key stringAlgorithm - — Private Key Algorithm used for SSL certificate.
Enum Description ECDSA_256 Elliptic Curve Digital Signature Algorithm (256-bit) ECDSA_384 Elliptic Curve Digital Signature Algorithm (384-bit) ECDSA_521 Elliptic Curve Digital Signature Algorithm (521-bit) JKS Java KeyStore (JKS) format KRB_KEYTAB Kerberos Keytab format PKCS12 PKCS#12 format for certificate storage RSA_2048 RSA 2048-bit encryption RSA_4096 RSA 4096-bit encryption RSA_PUBLIC Public RSA key format - Public
Certificate string - — Public Certificate used for SSL certificate.
- Ca
Chain string - — Description of the certificate authority (CA) chain.
- Cluster
Ext stringId - — UUID of the cluster to which the host NIC belongs.
- Passphrase string
- — Passphrase used for SSL certificate.
- Private
Key string - — Private Key used for SSL certificate.
- Private
Key stringAlgorithm - — Private Key Algorithm used for SSL certificate.
Enum Description ECDSA_256 Elliptic Curve Digital Signature Algorithm (256-bit) ECDSA_384 Elliptic Curve Digital Signature Algorithm (384-bit) ECDSA_521 Elliptic Curve Digital Signature Algorithm (521-bit) JKS Java KeyStore (JKS) format KRB_KEYTAB Kerberos Keytab format PKCS12 PKCS#12 format for certificate storage RSA_2048 RSA 2048-bit encryption RSA_4096 RSA 4096-bit encryption RSA_PUBLIC Public RSA key format - Public
Certificate string - — Public Certificate used for SSL certificate.
- ca_
chain string - — Description of the certificate authority (CA) chain.
- cluster_
ext_ stringid - — UUID of the cluster to which the host NIC belongs.
- passphrase string
- — Passphrase used for SSL certificate.
- private_
key string - — Private Key used for SSL certificate.
- private_
key_ stringalgorithm - — Private Key Algorithm used for SSL certificate.
Enum Description ECDSA_256 Elliptic Curve Digital Signature Algorithm (256-bit) ECDSA_384 Elliptic Curve Digital Signature Algorithm (384-bit) ECDSA_521 Elliptic Curve Digital Signature Algorithm (521-bit) JKS Java KeyStore (JKS) format KRB_KEYTAB Kerberos Keytab format PKCS12 PKCS#12 format for certificate storage RSA_2048 RSA 2048-bit encryption RSA_4096 RSA 4096-bit encryption RSA_PUBLIC Public RSA key format - public_
certificate string - — Public Certificate used for SSL certificate.
- ca
Chain String - — Description of the certificate authority (CA) chain.
- cluster
Ext StringId - — UUID of the cluster to which the host NIC belongs.
- passphrase String
- — Passphrase used for SSL certificate.
- private
Key String - — Private Key used for SSL certificate.
- private
Key StringAlgorithm - — Private Key Algorithm used for SSL certificate.
Enum Description ECDSA_256 Elliptic Curve Digital Signature Algorithm (256-bit) ECDSA_384 Elliptic Curve Digital Signature Algorithm (384-bit) ECDSA_521 Elliptic Curve Digital Signature Algorithm (521-bit) JKS Java KeyStore (JKS) format KRB_KEYTAB Kerberos Keytab format PKCS12 PKCS#12 format for certificate storage RSA_2048 RSA 2048-bit encryption RSA_4096 RSA 4096-bit encryption RSA_PUBLIC Public RSA key format - public
Certificate String - — Public Certificate used for SSL certificate.
- ca
Chain string - — Description of the certificate authority (CA) chain.
- cluster
Ext stringId - — UUID of the cluster to which the host NIC belongs.
- passphrase string
- — Passphrase used for SSL certificate.
- private
Key string - — Private Key used for SSL certificate.
- private
Key stringAlgorithm - — Private Key Algorithm used for SSL certificate.
Enum Description ECDSA_256 Elliptic Curve Digital Signature Algorithm (256-bit) ECDSA_384 Elliptic Curve Digital Signature Algorithm (384-bit) ECDSA_521 Elliptic Curve Digital Signature Algorithm (521-bit) JKS Java KeyStore (JKS) format KRB_KEYTAB Kerberos Keytab format PKCS12 PKCS#12 format for certificate storage RSA_2048 RSA 2048-bit encryption RSA_4096 RSA 4096-bit encryption RSA_PUBLIC Public RSA key format - public
Certificate string - — Public Certificate used for SSL certificate.
- ca_
chain str - — Description of the certificate authority (CA) chain.
- cluster_
ext_ strid - — UUID of the cluster to which the host NIC belongs.
- passphrase str
- — Passphrase used for SSL certificate.
- private_
key str - — Private Key used for SSL certificate.
- private_
key_ stralgorithm - — Private Key Algorithm used for SSL certificate.
Enum Description ECDSA_256 Elliptic Curve Digital Signature Algorithm (256-bit) ECDSA_384 Elliptic Curve Digital Signature Algorithm (384-bit) ECDSA_521 Elliptic Curve Digital Signature Algorithm (521-bit) JKS Java KeyStore (JKS) format KRB_KEYTAB Kerberos Keytab format PKCS12 PKCS#12 format for certificate storage RSA_2048 RSA 2048-bit encryption RSA_4096 RSA 4096-bit encryption RSA_PUBLIC Public RSA key format - public_
certificate str - — Public Certificate used for SSL certificate.
- ca
Chain String - — Description of the certificate authority (CA) chain.
- cluster
Ext StringId - — UUID of the cluster to which the host NIC belongs.
- passphrase String
- — Passphrase used for SSL certificate.
- private
Key String - — Private Key used for SSL certificate.
- private
Key StringAlgorithm - — Private Key Algorithm used for SSL certificate.
Enum Description ECDSA_256 Elliptic Curve Digital Signature Algorithm (256-bit) ECDSA_384 Elliptic Curve Digital Signature Algorithm (384-bit) ECDSA_521 Elliptic Curve Digital Signature Algorithm (521-bit) JKS Java KeyStore (JKS) format KRB_KEYTAB Kerberos Keytab format PKCS12 PKCS#12 format for certificate storage RSA_2048 RSA 2048-bit encryption RSA_4096 RSA 4096-bit encryption RSA_PUBLIC Public RSA key format - public
Certificate String - — Public Certificate used for SSL certificate.
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanixTerraform Provider.
published on Tuesday, May 26, 2026 by Piers Karsenbarg