1. Packages
  2. Packages
  3. Nutanix
  4. API Docs
  5. SslCertificateV2
Viewing docs for Nutanix v0.16.0
published on Tuesday, May 26, 2026 by Piers Karsenbarg
nutanix logo
Viewing docs for Nutanix v0.16.0
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:

    ClusterExtId string
    — UUID of the cluster to which the host NIC belongs.
    CaChain string
    — Description of the certificate authority (CA) chain.
    Passphrase string
    — Passphrase used for SSL certificate.
    PrivateKey string
    — Private Key used for SSL certificate.
    PrivateKeyAlgorithm string
    — Private Key Algorithm used for SSL certificate.

    EnumDescription
    ECDSA_256Elliptic Curve Digital Signature Algorithm (256-bit)
    ECDSA_384Elliptic Curve Digital Signature Algorithm (384-bit)
    ECDSA_521Elliptic Curve Digital Signature Algorithm (521-bit)
    JKSJava KeyStore (JKS) format
    KRB_KEYTABKerberos Keytab format
    PKCS12PKCS#12 format for certificate storage
    RSA_2048RSA 2048-bit encryption
    RSA_4096RSA 4096-bit encryption
    RSA_PUBLICPublic RSA key format
    PublicCertificate string
    — Public Certificate used for SSL certificate.
    ClusterExtId string
    — UUID of the cluster to which the host NIC belongs.
    CaChain string
    — Description of the certificate authority (CA) chain.
    Passphrase string
    — Passphrase used for SSL certificate.
    PrivateKey string
    — Private Key used for SSL certificate.
    PrivateKeyAlgorithm string
    — Private Key Algorithm used for SSL certificate.

    EnumDescription
    ECDSA_256Elliptic Curve Digital Signature Algorithm (256-bit)
    ECDSA_384Elliptic Curve Digital Signature Algorithm (384-bit)
    ECDSA_521Elliptic Curve Digital Signature Algorithm (521-bit)
    JKSJava KeyStore (JKS) format
    KRB_KEYTABKerberos Keytab format
    PKCS12PKCS#12 format for certificate storage
    RSA_2048RSA 2048-bit encryption
    RSA_4096RSA 4096-bit encryption
    RSA_PUBLICPublic RSA key format
    PublicCertificate string
    — Public Certificate used for SSL certificate.
    cluster_ext_id string
    — 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_algorithm string
    — Private Key Algorithm used for SSL certificate.

    EnumDescription
    ECDSA_256Elliptic Curve Digital Signature Algorithm (256-bit)
    ECDSA_384Elliptic Curve Digital Signature Algorithm (384-bit)
    ECDSA_521Elliptic Curve Digital Signature Algorithm (521-bit)
    JKSJava KeyStore (JKS) format
    KRB_KEYTABKerberos Keytab format
    PKCS12PKCS#12 format for certificate storage
    RSA_2048RSA 2048-bit encryption
    RSA_4096RSA 4096-bit encryption
    RSA_PUBLICPublic RSA key format
    public_certificate string
    — Public Certificate used for SSL certificate.
    clusterExtId String
    — UUID of the cluster to which the host NIC belongs.
    caChain String
    — Description of the certificate authority (CA) chain.
    passphrase String
    — Passphrase used for SSL certificate.
    privateKey String
    — Private Key used for SSL certificate.
    privateKeyAlgorithm String
    — Private Key Algorithm used for SSL certificate.

    EnumDescription
    ECDSA_256Elliptic Curve Digital Signature Algorithm (256-bit)
    ECDSA_384Elliptic Curve Digital Signature Algorithm (384-bit)
    ECDSA_521Elliptic Curve Digital Signature Algorithm (521-bit)
    JKSJava KeyStore (JKS) format
    KRB_KEYTABKerberos Keytab format
    PKCS12PKCS#12 format for certificate storage
    RSA_2048RSA 2048-bit encryption
    RSA_4096RSA 4096-bit encryption
    RSA_PUBLICPublic RSA key format
    publicCertificate String
    — Public Certificate used for SSL certificate.
    clusterExtId string
    — UUID of the cluster to which the host NIC belongs.
    caChain string
    — Description of the certificate authority (CA) chain.
    passphrase string
    — Passphrase used for SSL certificate.
    privateKey string
    — Private Key used for SSL certificate.
    privateKeyAlgorithm string
    — Private Key Algorithm used for SSL certificate.

    EnumDescription
    ECDSA_256Elliptic Curve Digital Signature Algorithm (256-bit)
    ECDSA_384Elliptic Curve Digital Signature Algorithm (384-bit)
    ECDSA_521Elliptic Curve Digital Signature Algorithm (521-bit)
    JKSJava KeyStore (JKS) format
    KRB_KEYTABKerberos Keytab format
    PKCS12PKCS#12 format for certificate storage
    RSA_2048RSA 2048-bit encryption
    RSA_4096RSA 4096-bit encryption
    RSA_PUBLICPublic RSA key format
    publicCertificate string
    — Public Certificate used for SSL certificate.
    cluster_ext_id str
    — 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_algorithm str
    — Private Key Algorithm used for SSL certificate.

    EnumDescription
    ECDSA_256Elliptic Curve Digital Signature Algorithm (256-bit)
    ECDSA_384Elliptic Curve Digital Signature Algorithm (384-bit)
    ECDSA_521Elliptic Curve Digital Signature Algorithm (521-bit)
    JKSJava KeyStore (JKS) format
    KRB_KEYTABKerberos Keytab format
    PKCS12PKCS#12 format for certificate storage
    RSA_2048RSA 2048-bit encryption
    RSA_4096RSA 4096-bit encryption
    RSA_PUBLICPublic RSA key format
    public_certificate str
    — Public Certificate used for SSL certificate.
    clusterExtId String
    — UUID of the cluster to which the host NIC belongs.
    caChain String
    — Description of the certificate authority (CA) chain.
    passphrase String
    — Passphrase used for SSL certificate.
    privateKey String
    — Private Key used for SSL certificate.
    privateKeyAlgorithm String
    — Private Key Algorithm used for SSL certificate.

    EnumDescription
    ECDSA_256Elliptic Curve Digital Signature Algorithm (256-bit)
    ECDSA_384Elliptic Curve Digital Signature Algorithm (384-bit)
    ECDSA_521Elliptic Curve Digital Signature Algorithm (521-bit)
    JKSJava KeyStore (JKS) format
    KRB_KEYTABKerberos Keytab format
    PKCS12PKCS#12 format for certificate storage
    RSA_2048RSA 2048-bit encryption
    RSA_4096RSA 4096-bit encryption
    RSA_PUBLICPublic RSA key format
    publicCertificate 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) -> SslCertificateV2
    func 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.
    The following state arguments are supported:
    CaChain string
    — Description of the certificate authority (CA) chain.
    ClusterExtId string
    — UUID of the cluster to which the host NIC belongs.
    Passphrase string
    — Passphrase used for SSL certificate.
    PrivateKey string
    — Private Key used for SSL certificate.
    PrivateKeyAlgorithm string
    — Private Key Algorithm used for SSL certificate.

    EnumDescription
    ECDSA_256Elliptic Curve Digital Signature Algorithm (256-bit)
    ECDSA_384Elliptic Curve Digital Signature Algorithm (384-bit)
    ECDSA_521Elliptic Curve Digital Signature Algorithm (521-bit)
    JKSJava KeyStore (JKS) format
    KRB_KEYTABKerberos Keytab format
    PKCS12PKCS#12 format for certificate storage
    RSA_2048RSA 2048-bit encryption
    RSA_4096RSA 4096-bit encryption
    RSA_PUBLICPublic RSA key format
    PublicCertificate string
    — Public Certificate used for SSL certificate.
    CaChain string
    — Description of the certificate authority (CA) chain.
    ClusterExtId string
    — UUID of the cluster to which the host NIC belongs.
    Passphrase string
    — Passphrase used for SSL certificate.
    PrivateKey string
    — Private Key used for SSL certificate.
    PrivateKeyAlgorithm string
    — Private Key Algorithm used for SSL certificate.

    EnumDescription
    ECDSA_256Elliptic Curve Digital Signature Algorithm (256-bit)
    ECDSA_384Elliptic Curve Digital Signature Algorithm (384-bit)
    ECDSA_521Elliptic Curve Digital Signature Algorithm (521-bit)
    JKSJava KeyStore (JKS) format
    KRB_KEYTABKerberos Keytab format
    PKCS12PKCS#12 format for certificate storage
    RSA_2048RSA 2048-bit encryption
    RSA_4096RSA 4096-bit encryption
    RSA_PUBLICPublic RSA key format
    PublicCertificate string
    — Public Certificate used for SSL certificate.
    ca_chain string
    — Description of the certificate authority (CA) chain.
    cluster_ext_id string
    — 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_algorithm string
    — Private Key Algorithm used for SSL certificate.

    EnumDescription
    ECDSA_256Elliptic Curve Digital Signature Algorithm (256-bit)
    ECDSA_384Elliptic Curve Digital Signature Algorithm (384-bit)
    ECDSA_521Elliptic Curve Digital Signature Algorithm (521-bit)
    JKSJava KeyStore (JKS) format
    KRB_KEYTABKerberos Keytab format
    PKCS12PKCS#12 format for certificate storage
    RSA_2048RSA 2048-bit encryption
    RSA_4096RSA 4096-bit encryption
    RSA_PUBLICPublic RSA key format
    public_certificate string
    — Public Certificate used for SSL certificate.
    caChain String
    — Description of the certificate authority (CA) chain.
    clusterExtId String
    — UUID of the cluster to which the host NIC belongs.
    passphrase String
    — Passphrase used for SSL certificate.
    privateKey String
    — Private Key used for SSL certificate.
    privateKeyAlgorithm String
    — Private Key Algorithm used for SSL certificate.

    EnumDescription
    ECDSA_256Elliptic Curve Digital Signature Algorithm (256-bit)
    ECDSA_384Elliptic Curve Digital Signature Algorithm (384-bit)
    ECDSA_521Elliptic Curve Digital Signature Algorithm (521-bit)
    JKSJava KeyStore (JKS) format
    KRB_KEYTABKerberos Keytab format
    PKCS12PKCS#12 format for certificate storage
    RSA_2048RSA 2048-bit encryption
    RSA_4096RSA 4096-bit encryption
    RSA_PUBLICPublic RSA key format
    publicCertificate String
    — Public Certificate used for SSL certificate.
    caChain string
    — Description of the certificate authority (CA) chain.
    clusterExtId string
    — UUID of the cluster to which the host NIC belongs.
    passphrase string
    — Passphrase used for SSL certificate.
    privateKey string
    — Private Key used for SSL certificate.
    privateKeyAlgorithm string
    — Private Key Algorithm used for SSL certificate.

    EnumDescription
    ECDSA_256Elliptic Curve Digital Signature Algorithm (256-bit)
    ECDSA_384Elliptic Curve Digital Signature Algorithm (384-bit)
    ECDSA_521Elliptic Curve Digital Signature Algorithm (521-bit)
    JKSJava KeyStore (JKS) format
    KRB_KEYTABKerberos Keytab format
    PKCS12PKCS#12 format for certificate storage
    RSA_2048RSA 2048-bit encryption
    RSA_4096RSA 4096-bit encryption
    RSA_PUBLICPublic RSA key format
    publicCertificate string
    — Public Certificate used for SSL certificate.
    ca_chain str
    — Description of the certificate authority (CA) chain.
    cluster_ext_id str
    — 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_algorithm str
    — Private Key Algorithm used for SSL certificate.

    EnumDescription
    ECDSA_256Elliptic Curve Digital Signature Algorithm (256-bit)
    ECDSA_384Elliptic Curve Digital Signature Algorithm (384-bit)
    ECDSA_521Elliptic Curve Digital Signature Algorithm (521-bit)
    JKSJava KeyStore (JKS) format
    KRB_KEYTABKerberos Keytab format
    PKCS12PKCS#12 format for certificate storage
    RSA_2048RSA 2048-bit encryption
    RSA_4096RSA 4096-bit encryption
    RSA_PUBLICPublic RSA key format
    public_certificate str
    — Public Certificate used for SSL certificate.
    caChain String
    — Description of the certificate authority (CA) chain.
    clusterExtId String
    — UUID of the cluster to which the host NIC belongs.
    passphrase String
    — Passphrase used for SSL certificate.
    privateKey String
    — Private Key used for SSL certificate.
    privateKeyAlgorithm String
    — Private Key Algorithm used for SSL certificate.

    EnumDescription
    ECDSA_256Elliptic Curve Digital Signature Algorithm (256-bit)
    ECDSA_384Elliptic Curve Digital Signature Algorithm (384-bit)
    ECDSA_521Elliptic Curve Digital Signature Algorithm (521-bit)
    JKSJava KeyStore (JKS) format
    KRB_KEYTABKerberos Keytab format
    PKCS12PKCS#12 format for certificate storage
    RSA_2048RSA 2048-bit encryption
    RSA_4096RSA 4096-bit encryption
    RSA_PUBLICPublic RSA key format
    publicCertificate 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 nutanix Terraform Provider.
    nutanix logo
    Viewing docs for Nutanix v0.16.0
    published on Tuesday, May 26, 2026 by Piers Karsenbarg

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial