1. Packages
  2. Avi Provider
  3. API Docs
  4. Hardwaresecuritymodulegroup
avi 31.1.1 published on Monday, Apr 14, 2025 by vmware

avi.Hardwaresecuritymodulegroup

avi logo
avi 31.1.1 published on Monday, Apr 14, 2025 by vmware

    <!–

    Copyright 2021 VMware, Inc.
    SPDX-License-Identifier: Mozilla Public License 2.0
    

    –>

    layout: “avi”

    page_title: “Avi: avi.Hardwaresecuritymodulegroup” sidebar_current: “docs-avi-resource-hardwaresecuritymodulegroup” description: |- Creates and manages Avi HardwareSecurityModuleGroup.

    avi.Hardwaresecuritymodulegroup

    The HardwareSecurityModuleGroup resource allows the creation and management of Avi HardwareSecurityModuleGroup

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as avi from "@pulumi/avi";
    
    const foo = new avi.Hardwaresecuritymodulegroup("foo", {tenantRef: "/api/tenant/?name=admin"});
    
    import pulumi
    import pulumi_avi as avi
    
    foo = avi.Hardwaresecuritymodulegroup("foo", tenant_ref="/api/tenant/?name=admin")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := avi.NewHardwaresecuritymodulegroup(ctx, "foo", &avi.HardwaresecuritymodulegroupArgs{
    			TenantRef: pulumi.String("/api/tenant/?name=admin"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Avi = Pulumi.Avi;
    
    return await Deployment.RunAsync(() => 
    {
        var foo = new Avi.Hardwaresecuritymodulegroup("foo", new()
        {
            TenantRef = "/api/tenant/?name=admin",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.avi.Hardwaresecuritymodulegroup;
    import com.pulumi.avi.HardwaresecuritymodulegroupArgs;
    import java.util.List;
    import java.util.ArrayList;
    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 foo = new Hardwaresecuritymodulegroup("foo", HardwaresecuritymodulegroupArgs.builder()
                .tenantRef("/api/tenant/?name=admin")
                .build());
    
        }
    }
    
    resources:
      foo:
        type: avi:Hardwaresecuritymodulegroup
        properties:
          tenantRef: /api/tenant/?name=admin
    

    Create Hardwaresecuritymodulegroup Resource

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

    Constructor syntax

    new Hardwaresecuritymodulegroup(name: string, args: HardwaresecuritymodulegroupArgs, opts?: CustomResourceOptions);
    @overload
    def Hardwaresecuritymodulegroup(resource_name: str,
                                    args: HardwaresecuritymodulegroupArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def Hardwaresecuritymodulegroup(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    hsms: Optional[Sequence[HardwaresecuritymodulegroupHsmArgs]] = None,
                                    configpb_attributes: Optional[Sequence[HardwaresecuritymodulegroupConfigpbAttributeArgs]] = None,
                                    hardwaresecuritymodulegroup_id: Optional[str] = None,
                                    markers: Optional[Sequence[HardwaresecuritymodulegroupMarkerArgs]] = None,
                                    name: Optional[str] = None,
                                    tenant_ref: Optional[str] = None,
                                    uuid: Optional[str] = None)
    func NewHardwaresecuritymodulegroup(ctx *Context, name string, args HardwaresecuritymodulegroupArgs, opts ...ResourceOption) (*Hardwaresecuritymodulegroup, error)
    public Hardwaresecuritymodulegroup(string name, HardwaresecuritymodulegroupArgs args, CustomResourceOptions? opts = null)
    public Hardwaresecuritymodulegroup(String name, HardwaresecuritymodulegroupArgs args)
    public Hardwaresecuritymodulegroup(String name, HardwaresecuritymodulegroupArgs args, CustomResourceOptions options)
    
    type: avi:Hardwaresecuritymodulegroup
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args HardwaresecuritymodulegroupArgs
    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 HardwaresecuritymodulegroupArgs
    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 HardwaresecuritymodulegroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args HardwaresecuritymodulegroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args HardwaresecuritymodulegroupArgs
    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 hardwaresecuritymodulegroupResource = new Avi.Hardwaresecuritymodulegroup("hardwaresecuritymodulegroupResource", new()
    {
        Hsms = new[]
        {
            new Avi.Inputs.HardwaresecuritymodulegroupHsmArgs
            {
                Type = "string",
                Cloudhsms = new[]
                {
                    new Avi.Inputs.HardwaresecuritymodulegroupHsmCloudhsmArgs
                    {
                        ClientConfig = "string",
                        ClusterCert = "string",
                        CryptoUserName = "string",
                        CryptoUserPassword = "string",
                        HsmIps = new[]
                        {
                            "string",
                        },
                        MgmtConfig = "string",
                    },
                },
                Nethsms = new[]
                {
                    new Avi.Inputs.HardwaresecuritymodulegroupHsmNethsmArgs
                    {
                        Esn = "string",
                        Keyhash = "string",
                        Priority = "string",
                        RemoteIps = new[]
                        {
                            new Avi.Inputs.HardwaresecuritymodulegroupHsmNethsmRemoteIpArgs
                            {
                                Addr = "string",
                                Type = "string",
                            },
                        },
                        ModuleId = "string",
                        RemotePort = "string",
                    },
                },
                Rfs = new[]
                {
                    new Avi.Inputs.HardwaresecuritymodulegroupHsmRfArgs
                    {
                        Ips = new[]
                        {
                            new Avi.Inputs.HardwaresecuritymodulegroupHsmRfIpArgs
                            {
                                Addr = "string",
                                Type = "string",
                            },
                        },
                        Port = "string",
                    },
                },
                Slunas = new[]
                {
                    new Avi.Inputs.HardwaresecuritymodulegroupHsmSlunaArgs
                    {
                        IsHa = "string",
                        HaGroupNum = "string",
                        NodeInfos = new[]
                        {
                            new Avi.Inputs.HardwaresecuritymodulegroupHsmSlunaNodeInfoArgs
                            {
                                ClientIp = "string",
                                ChrystokiConf = "string",
                                ClientCert = "string",
                                ClientPrivKey = "string",
                                SessionMajorNumber = "string",
                                SessionMinorNumber = "string",
                            },
                        },
                        ServerPem = "string",
                        Servers = new[]
                        {
                            new Avi.Inputs.HardwaresecuritymodulegroupHsmSlunaServerArgs
                            {
                                Index = "string",
                                RemoteIp = "string",
                                ServerCert = "string",
                                PartitionPasswd = "string",
                                PartitionSerialNumber = "string",
                            },
                        },
                        UseDedicatedNetwork = "string",
                    },
                },
            },
        },
        ConfigpbAttributes = new[]
        {
            new Avi.Inputs.HardwaresecuritymodulegroupConfigpbAttributeArgs
            {
                Version = "string",
            },
        },
        HardwaresecuritymodulegroupId = "string",
        Markers = new[]
        {
            new Avi.Inputs.HardwaresecuritymodulegroupMarkerArgs
            {
                Key = "string",
                Values = new[]
                {
                    "string",
                },
            },
        },
        Name = "string",
        TenantRef = "string",
        Uuid = "string",
    });
    
    example, err := avi.NewHardwaresecuritymodulegroup(ctx, "hardwaresecuritymodulegroupResource", &avi.HardwaresecuritymodulegroupArgs{
    	Hsms: avi.HardwaresecuritymodulegroupHsmArray{
    		&avi.HardwaresecuritymodulegroupHsmArgs{
    			Type: pulumi.String("string"),
    			Cloudhsms: avi.HardwaresecuritymodulegroupHsmCloudhsmArray{
    				&avi.HardwaresecuritymodulegroupHsmCloudhsmArgs{
    					ClientConfig:       pulumi.String("string"),
    					ClusterCert:        pulumi.String("string"),
    					CryptoUserName:     pulumi.String("string"),
    					CryptoUserPassword: pulumi.String("string"),
    					HsmIps: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					MgmtConfig: pulumi.String("string"),
    				},
    			},
    			Nethsms: avi.HardwaresecuritymodulegroupHsmNethsmArray{
    				&avi.HardwaresecuritymodulegroupHsmNethsmArgs{
    					Esn:      pulumi.String("string"),
    					Keyhash:  pulumi.String("string"),
    					Priority: pulumi.String("string"),
    					RemoteIps: avi.HardwaresecuritymodulegroupHsmNethsmRemoteIpArray{
    						&avi.HardwaresecuritymodulegroupHsmNethsmRemoteIpArgs{
    							Addr: pulumi.String("string"),
    							Type: pulumi.String("string"),
    						},
    					},
    					ModuleId:   pulumi.String("string"),
    					RemotePort: pulumi.String("string"),
    				},
    			},
    			Rfs: avi.HardwaresecuritymodulegroupHsmRfArray{
    				&avi.HardwaresecuritymodulegroupHsmRfArgs{
    					Ips: avi.HardwaresecuritymodulegroupHsmRfIpArray{
    						&avi.HardwaresecuritymodulegroupHsmRfIpArgs{
    							Addr: pulumi.String("string"),
    							Type: pulumi.String("string"),
    						},
    					},
    					Port: pulumi.String("string"),
    				},
    			},
    			Slunas: avi.HardwaresecuritymodulegroupHsmSlunaArray{
    				&avi.HardwaresecuritymodulegroupHsmSlunaArgs{
    					IsHa:       pulumi.String("string"),
    					HaGroupNum: pulumi.String("string"),
    					NodeInfos: avi.HardwaresecuritymodulegroupHsmSlunaNodeInfoArray{
    						&avi.HardwaresecuritymodulegroupHsmSlunaNodeInfoArgs{
    							ClientIp:           pulumi.String("string"),
    							ChrystokiConf:      pulumi.String("string"),
    							ClientCert:         pulumi.String("string"),
    							ClientPrivKey:      pulumi.String("string"),
    							SessionMajorNumber: pulumi.String("string"),
    							SessionMinorNumber: pulumi.String("string"),
    						},
    					},
    					ServerPem: pulumi.String("string"),
    					Servers: avi.HardwaresecuritymodulegroupHsmSlunaServerArray{
    						&avi.HardwaresecuritymodulegroupHsmSlunaServerArgs{
    							Index:                 pulumi.String("string"),
    							RemoteIp:              pulumi.String("string"),
    							ServerCert:            pulumi.String("string"),
    							PartitionPasswd:       pulumi.String("string"),
    							PartitionSerialNumber: pulumi.String("string"),
    						},
    					},
    					UseDedicatedNetwork: pulumi.String("string"),
    				},
    			},
    		},
    	},
    	ConfigpbAttributes: avi.HardwaresecuritymodulegroupConfigpbAttributeArray{
    		&avi.HardwaresecuritymodulegroupConfigpbAttributeArgs{
    			Version: pulumi.String("string"),
    		},
    	},
    	HardwaresecuritymodulegroupId: pulumi.String("string"),
    	Markers: avi.HardwaresecuritymodulegroupMarkerArray{
    		&avi.HardwaresecuritymodulegroupMarkerArgs{
    			Key: pulumi.String("string"),
    			Values: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    	Name:      pulumi.String("string"),
    	TenantRef: pulumi.String("string"),
    	Uuid:      pulumi.String("string"),
    })
    
    var hardwaresecuritymodulegroupResource = new Hardwaresecuritymodulegroup("hardwaresecuritymodulegroupResource", HardwaresecuritymodulegroupArgs.builder()
        .hsms(HardwaresecuritymodulegroupHsmArgs.builder()
            .type("string")
            .cloudhsms(HardwaresecuritymodulegroupHsmCloudhsmArgs.builder()
                .clientConfig("string")
                .clusterCert("string")
                .cryptoUserName("string")
                .cryptoUserPassword("string")
                .hsmIps("string")
                .mgmtConfig("string")
                .build())
            .nethsms(HardwaresecuritymodulegroupHsmNethsmArgs.builder()
                .esn("string")
                .keyhash("string")
                .priority("string")
                .remoteIps(HardwaresecuritymodulegroupHsmNethsmRemoteIpArgs.builder()
                    .addr("string")
                    .type("string")
                    .build())
                .moduleId("string")
                .remotePort("string")
                .build())
            .rfs(HardwaresecuritymodulegroupHsmRfArgs.builder()
                .ips(HardwaresecuritymodulegroupHsmRfIpArgs.builder()
                    .addr("string")
                    .type("string")
                    .build())
                .port("string")
                .build())
            .slunas(HardwaresecuritymodulegroupHsmSlunaArgs.builder()
                .isHa("string")
                .haGroupNum("string")
                .nodeInfos(HardwaresecuritymodulegroupHsmSlunaNodeInfoArgs.builder()
                    .clientIp("string")
                    .chrystokiConf("string")
                    .clientCert("string")
                    .clientPrivKey("string")
                    .sessionMajorNumber("string")
                    .sessionMinorNumber("string")
                    .build())
                .serverPem("string")
                .servers(HardwaresecuritymodulegroupHsmSlunaServerArgs.builder()
                    .index("string")
                    .remoteIp("string")
                    .serverCert("string")
                    .partitionPasswd("string")
                    .partitionSerialNumber("string")
                    .build())
                .useDedicatedNetwork("string")
                .build())
            .build())
        .configpbAttributes(HardwaresecuritymodulegroupConfigpbAttributeArgs.builder()
            .version("string")
            .build())
        .hardwaresecuritymodulegroupId("string")
        .markers(HardwaresecuritymodulegroupMarkerArgs.builder()
            .key("string")
            .values("string")
            .build())
        .name("string")
        .tenantRef("string")
        .uuid("string")
        .build());
    
    hardwaresecuritymodulegroup_resource = avi.Hardwaresecuritymodulegroup("hardwaresecuritymodulegroupResource",
        hsms=[{
            "type": "string",
            "cloudhsms": [{
                "client_config": "string",
                "cluster_cert": "string",
                "crypto_user_name": "string",
                "crypto_user_password": "string",
                "hsm_ips": ["string"],
                "mgmt_config": "string",
            }],
            "nethsms": [{
                "esn": "string",
                "keyhash": "string",
                "priority": "string",
                "remote_ips": [{
                    "addr": "string",
                    "type": "string",
                }],
                "module_id": "string",
                "remote_port": "string",
            }],
            "rfs": [{
                "ips": [{
                    "addr": "string",
                    "type": "string",
                }],
                "port": "string",
            }],
            "slunas": [{
                "is_ha": "string",
                "ha_group_num": "string",
                "node_infos": [{
                    "client_ip": "string",
                    "chrystoki_conf": "string",
                    "client_cert": "string",
                    "client_priv_key": "string",
                    "session_major_number": "string",
                    "session_minor_number": "string",
                }],
                "server_pem": "string",
                "servers": [{
                    "index": "string",
                    "remote_ip": "string",
                    "server_cert": "string",
                    "partition_passwd": "string",
                    "partition_serial_number": "string",
                }],
                "use_dedicated_network": "string",
            }],
        }],
        configpb_attributes=[{
            "version": "string",
        }],
        hardwaresecuritymodulegroup_id="string",
        markers=[{
            "key": "string",
            "values": ["string"],
        }],
        name="string",
        tenant_ref="string",
        uuid="string")
    
    const hardwaresecuritymodulegroupResource = new avi.Hardwaresecuritymodulegroup("hardwaresecuritymodulegroupResource", {
        hsms: [{
            type: "string",
            cloudhsms: [{
                clientConfig: "string",
                clusterCert: "string",
                cryptoUserName: "string",
                cryptoUserPassword: "string",
                hsmIps: ["string"],
                mgmtConfig: "string",
            }],
            nethsms: [{
                esn: "string",
                keyhash: "string",
                priority: "string",
                remoteIps: [{
                    addr: "string",
                    type: "string",
                }],
                moduleId: "string",
                remotePort: "string",
            }],
            rfs: [{
                ips: [{
                    addr: "string",
                    type: "string",
                }],
                port: "string",
            }],
            slunas: [{
                isHa: "string",
                haGroupNum: "string",
                nodeInfos: [{
                    clientIp: "string",
                    chrystokiConf: "string",
                    clientCert: "string",
                    clientPrivKey: "string",
                    sessionMajorNumber: "string",
                    sessionMinorNumber: "string",
                }],
                serverPem: "string",
                servers: [{
                    index: "string",
                    remoteIp: "string",
                    serverCert: "string",
                    partitionPasswd: "string",
                    partitionSerialNumber: "string",
                }],
                useDedicatedNetwork: "string",
            }],
        }],
        configpbAttributes: [{
            version: "string",
        }],
        hardwaresecuritymodulegroupId: "string",
        markers: [{
            key: "string",
            values: ["string"],
        }],
        name: "string",
        tenantRef: "string",
        uuid: "string",
    });
    
    type: avi:Hardwaresecuritymodulegroup
    properties:
        configpbAttributes:
            - version: string
        hardwaresecuritymodulegroupId: string
        hsms:
            - cloudhsms:
                - clientConfig: string
                  clusterCert: string
                  cryptoUserName: string
                  cryptoUserPassword: string
                  hsmIps:
                    - string
                  mgmtConfig: string
              nethsms:
                - esn: string
                  keyhash: string
                  moduleId: string
                  priority: string
                  remoteIps:
                    - addr: string
                      type: string
                  remotePort: string
              rfs:
                - ips:
                    - addr: string
                      type: string
                  port: string
              slunas:
                - haGroupNum: string
                  isHa: string
                  nodeInfos:
                    - chrystokiConf: string
                      clientCert: string
                      clientIp: string
                      clientPrivKey: string
                      sessionMajorNumber: string
                      sessionMinorNumber: string
                  serverPem: string
                  servers:
                    - index: string
                      partitionPasswd: string
                      partitionSerialNumber: string
                      remoteIp: string
                      serverCert: string
                  useDedicatedNetwork: string
              type: string
        markers:
            - key: string
              values:
                - string
        name: string
        tenantRef: string
        uuid: string
    

    Hardwaresecuritymodulegroup 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 Hardwaresecuritymodulegroup resource accepts the following input properties:

    Hsms List<HardwaresecuritymodulegroupHsm>
    Hardware security module configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes List<HardwaresecuritymodulegroupConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    HardwaresecuritymodulegroupId string
    Markers List<HardwaresecuritymodulegroupMarker>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Name of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantRef string
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Uuid of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Hsms []HardwaresecuritymodulegroupHsmArgs
    Hardware security module configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes []HardwaresecuritymodulegroupConfigpbAttributeArgs
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    HardwaresecuritymodulegroupId string
    Markers []HardwaresecuritymodulegroupMarkerArgs
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Name of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantRef string
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Uuid of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hsms List<HardwaresecuritymodulegroupHsm>
    Hardware security module configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<HardwaresecuritymodulegroupConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hardwaresecuritymodulegroupId String
    markers List<HardwaresecuritymodulegroupMarker>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Name of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef String
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Uuid of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hsms HardwaresecuritymodulegroupHsm[]
    Hardware security module configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes HardwaresecuritymodulegroupConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hardwaresecuritymodulegroupId string
    markers HardwaresecuritymodulegroupMarker[]
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name string
    Name of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef string
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid string
    Uuid of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hsms Sequence[HardwaresecuritymodulegroupHsmArgs]
    Hardware security module configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpb_attributes Sequence[HardwaresecuritymodulegroupConfigpbAttributeArgs]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hardwaresecuritymodulegroup_id str
    markers Sequence[HardwaresecuritymodulegroupMarkerArgs]
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name str
    Name of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenant_ref str
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid str
    Uuid of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hsms List<Property Map>
    Hardware security module configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<Property Map>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hardwaresecuritymodulegroupId String
    markers List<Property Map>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Name of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef String
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Uuid of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Hardwaresecuritymodulegroup 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 str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Hardwaresecuritymodulegroup Resource

    Get an existing Hardwaresecuritymodulegroup 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?: HardwaresecuritymodulegroupState, opts?: CustomResourceOptions): Hardwaresecuritymodulegroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configpb_attributes: Optional[Sequence[HardwaresecuritymodulegroupConfigpbAttributeArgs]] = None,
            hardwaresecuritymodulegroup_id: Optional[str] = None,
            hsms: Optional[Sequence[HardwaresecuritymodulegroupHsmArgs]] = None,
            markers: Optional[Sequence[HardwaresecuritymodulegroupMarkerArgs]] = None,
            name: Optional[str] = None,
            tenant_ref: Optional[str] = None,
            uuid: Optional[str] = None) -> Hardwaresecuritymodulegroup
    func GetHardwaresecuritymodulegroup(ctx *Context, name string, id IDInput, state *HardwaresecuritymodulegroupState, opts ...ResourceOption) (*Hardwaresecuritymodulegroup, error)
    public static Hardwaresecuritymodulegroup Get(string name, Input<string> id, HardwaresecuritymodulegroupState? state, CustomResourceOptions? opts = null)
    public static Hardwaresecuritymodulegroup get(String name, Output<String> id, HardwaresecuritymodulegroupState state, CustomResourceOptions options)
    resources:  _:    type: avi:Hardwaresecuritymodulegroup    get:      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:
    ConfigpbAttributes List<HardwaresecuritymodulegroupConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    HardwaresecuritymodulegroupId string
    Hsms List<HardwaresecuritymodulegroupHsm>
    Hardware security module configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Markers List<HardwaresecuritymodulegroupMarker>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Name of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantRef string
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Uuid of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes []HardwaresecuritymodulegroupConfigpbAttributeArgs
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    HardwaresecuritymodulegroupId string
    Hsms []HardwaresecuritymodulegroupHsmArgs
    Hardware security module configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Markers []HardwaresecuritymodulegroupMarkerArgs
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Name of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantRef string
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Uuid of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<HardwaresecuritymodulegroupConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hardwaresecuritymodulegroupId String
    hsms List<HardwaresecuritymodulegroupHsm>
    Hardware security module configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    markers List<HardwaresecuritymodulegroupMarker>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Name of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef String
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Uuid of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes HardwaresecuritymodulegroupConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hardwaresecuritymodulegroupId string
    hsms HardwaresecuritymodulegroupHsm[]
    Hardware security module configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    markers HardwaresecuritymodulegroupMarker[]
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name string
    Name of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef string
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid string
    Uuid of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpb_attributes Sequence[HardwaresecuritymodulegroupConfigpbAttributeArgs]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hardwaresecuritymodulegroup_id str
    hsms Sequence[HardwaresecuritymodulegroupHsmArgs]
    Hardware security module configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    markers Sequence[HardwaresecuritymodulegroupMarkerArgs]
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name str
    Name of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenant_ref str
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid str
    Uuid of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<Property Map>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hardwaresecuritymodulegroupId String
    hsms List<Property Map>
    Hardware security module configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    markers List<Property Map>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Name of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef String
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Uuid of the hsm group configuration object. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.

    Supporting Types

    HardwaresecuritymodulegroupConfigpbAttribute, HardwaresecuritymodulegroupConfigpbAttributeArgs

    Version string
    Version string
    version String
    version string
    version String

    HardwaresecuritymodulegroupHsm, HardwaresecuritymodulegroupHsmArgs

    HardwaresecuritymodulegroupHsmCloudhsm, HardwaresecuritymodulegroupHsmCloudhsmArgs

    ClientConfig string
    ClusterCert string
    CryptoUserName string
    CryptoUserPassword string
    HsmIps List<string>
    MgmtConfig string
    clientConfig String
    clusterCert String
    cryptoUserName String
    cryptoUserPassword String
    hsmIps List<String>
    mgmtConfig String
    clientConfig String
    clusterCert String
    cryptoUserName String
    cryptoUserPassword String
    hsmIps List<String>
    mgmtConfig String

    HardwaresecuritymodulegroupHsmNethsm, HardwaresecuritymodulegroupHsmNethsmArgs

    HardwaresecuritymodulegroupHsmNethsmRemoteIp, HardwaresecuritymodulegroupHsmNethsmRemoteIpArgs

    Addr string
    Type string
    Addr string
    Type string
    addr String
    type String
    addr string
    type string
    addr str
    type str
    addr String
    type String

    HardwaresecuritymodulegroupHsmRf, HardwaresecuritymodulegroupHsmRfArgs

    HardwaresecuritymodulegroupHsmRfIp, HardwaresecuritymodulegroupHsmRfIpArgs

    Addr string
    Type string
    Addr string
    Type string
    addr String
    type String
    addr string
    type string
    addr str
    type str
    addr String
    type String

    HardwaresecuritymodulegroupHsmSluna, HardwaresecuritymodulegroupHsmSlunaArgs

    HardwaresecuritymodulegroupHsmSlunaNodeInfo, HardwaresecuritymodulegroupHsmSlunaNodeInfoArgs

    HardwaresecuritymodulegroupHsmSlunaServer, HardwaresecuritymodulegroupHsmSlunaServerArgs

    HardwaresecuritymodulegroupMarker, HardwaresecuritymodulegroupMarkerArgs

    Key string
    Values List<string>
    Key string
    Values []string
    key String
    values List<String>
    key string
    values string[]
    key str
    values Sequence[str]
    key String
    values List<String>

    Package Details

    Repository
    avi vmware/terraform-provider-avi
    License
    Notes
    This Pulumi package is based on the avi Terraform Provider.
    avi logo
    avi 31.1.1 published on Monday, Apr 14, 2025 by vmware