1. Packages
  2. Ibm Provider
  3. API Docs
  4. HpcsVault
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

ibm.HpcsVault

Explore with Pulumi AI

ibm logo
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

    Provides a resource for vault. This allows vault to be created, updated and deleted.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const vaultInstance = new ibm.HpcsVault("vaultInstance", {
        description: "example vault",
        instanceId: "76195d24-8a31-4c6d-9050-c35f09375cfb",
        region: "us-east",
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    vault_instance = ibm.HpcsVault("vaultInstance",
        description="example vault",
        instance_id="76195d24-8a31-4c6d-9050-c35f09375cfb",
        region="us-east")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.NewHpcsVault(ctx, "vaultInstance", &ibm.HpcsVaultArgs{
    			Description: pulumi.String("example vault"),
    			InstanceId:  pulumi.String("76195d24-8a31-4c6d-9050-c35f09375cfb"),
    			Region:      pulumi.String("us-east"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var vaultInstance = new Ibm.HpcsVault("vaultInstance", new()
        {
            Description = "example vault",
            InstanceId = "76195d24-8a31-4c6d-9050-c35f09375cfb",
            Region = "us-east",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.HpcsVault;
    import com.pulumi.ibm.HpcsVaultArgs;
    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 vaultInstance = new HpcsVault("vaultInstance", HpcsVaultArgs.builder()
                .description("example vault")
                .instanceId("76195d24-8a31-4c6d-9050-c35f09375cfb")
                .region("us-east")
                .build());
    
        }
    }
    
    resources:
      vaultInstance:
        type: ibm:HpcsVault
        properties:
          description: example vault
          instanceId: 76195d24-8a31-4c6d-9050-c35f09375cfb
          region: us-east
    

    Create HpcsVault Resource

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

    Constructor syntax

    new HpcsVault(name: string, args: HpcsVaultArgs, opts?: CustomResourceOptions);
    @overload
    def HpcsVault(resource_name: str,
                  args: HpcsVaultArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def HpcsVault(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  instance_id: Optional[str] = None,
                  region: Optional[str] = None,
                  description: Optional[str] = None,
                  hpcs_vault_id: Optional[str] = None,
                  name: Optional[str] = None)
    func NewHpcsVault(ctx *Context, name string, args HpcsVaultArgs, opts ...ResourceOption) (*HpcsVault, error)
    public HpcsVault(string name, HpcsVaultArgs args, CustomResourceOptions? opts = null)
    public HpcsVault(String name, HpcsVaultArgs args)
    public HpcsVault(String name, HpcsVaultArgs args, CustomResourceOptions options)
    
    type: ibm:HpcsVault
    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 HpcsVaultArgs
    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 HpcsVaultArgs
    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 HpcsVaultArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args HpcsVaultArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args HpcsVaultArgs
    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 hpcsVaultResource = new Ibm.HpcsVault("hpcsVaultResource", new()
    {
        InstanceId = "string",
        Region = "string",
        Description = "string",
        HpcsVaultId = "string",
        Name = "string",
    });
    
    example, err := ibm.NewHpcsVault(ctx, "hpcsVaultResource", &ibm.HpcsVaultArgs{
    	InstanceId:  pulumi.String("string"),
    	Region:      pulumi.String("string"),
    	Description: pulumi.String("string"),
    	HpcsVaultId: pulumi.String("string"),
    	Name:        pulumi.String("string"),
    })
    
    var hpcsVaultResource = new HpcsVault("hpcsVaultResource", HpcsVaultArgs.builder()
        .instanceId("string")
        .region("string")
        .description("string")
        .hpcsVaultId("string")
        .name("string")
        .build());
    
    hpcs_vault_resource = ibm.HpcsVault("hpcsVaultResource",
        instance_id="string",
        region="string",
        description="string",
        hpcs_vault_id="string",
        name="string")
    
    const hpcsVaultResource = new ibm.HpcsVault("hpcsVaultResource", {
        instanceId: "string",
        region: "string",
        description: "string",
        hpcsVaultId: "string",
        name: "string",
    });
    
    type: ibm:HpcsVault
    properties:
        description: string
        hpcsVaultId: string
        instanceId: string
        name: string
        region: string
    

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

    InstanceId string
    ID of UKO Instance

    • Constraints: Must match the ID of the UKO instance you are trying to work with.
    Region string
    Region of the UKO Instance

    • Constraints: Must match the region of the UKO instance you are trying to work with. Allowable values are: au-syd, in-che, jp-osa, jp-tok, kr-seo, eu-de, eu-gb, ca-tor, us-south, us-south-test, us-east, br-sao.
    Description string
    Description of the vault.

    • Constraints: The maximum length is 200 characters. The minimum length is 0 characters. The value must match regular expression /(.|\\n)*/.
    HpcsVaultId string
    Name string
    A human-readable name to assign to your vault. To protect your privacy, do not use personal data, such as your name or location.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9#@!$%'_-][A-Za-z0-9#@!$% '_-]*$/.
    InstanceId string
    ID of UKO Instance

    • Constraints: Must match the ID of the UKO instance you are trying to work with.
    Region string
    Region of the UKO Instance

    • Constraints: Must match the region of the UKO instance you are trying to work with. Allowable values are: au-syd, in-che, jp-osa, jp-tok, kr-seo, eu-de, eu-gb, ca-tor, us-south, us-south-test, us-east, br-sao.
    Description string
    Description of the vault.

    • Constraints: The maximum length is 200 characters. The minimum length is 0 characters. The value must match regular expression /(.|\\n)*/.
    HpcsVaultId string
    Name string
    A human-readable name to assign to your vault. To protect your privacy, do not use personal data, such as your name or location.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9#@!$%'_-][A-Za-z0-9#@!$% '_-]*$/.
    instanceId String
    ID of UKO Instance

    • Constraints: Must match the ID of the UKO instance you are trying to work with.
    region String
    Region of the UKO Instance

    • Constraints: Must match the region of the UKO instance you are trying to work with. Allowable values are: au-syd, in-che, jp-osa, jp-tok, kr-seo, eu-de, eu-gb, ca-tor, us-south, us-south-test, us-east, br-sao.
    description String
    Description of the vault.

    • Constraints: The maximum length is 200 characters. The minimum length is 0 characters. The value must match regular expression /(.|\\n)*/.
    hpcsVaultId String
    name String
    A human-readable name to assign to your vault. To protect your privacy, do not use personal data, such as your name or location.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9#@!$%'_-][A-Za-z0-9#@!$% '_-]*$/.
    instanceId string
    ID of UKO Instance

    • Constraints: Must match the ID of the UKO instance you are trying to work with.
    region string
    Region of the UKO Instance

    • Constraints: Must match the region of the UKO instance you are trying to work with. Allowable values are: au-syd, in-che, jp-osa, jp-tok, kr-seo, eu-de, eu-gb, ca-tor, us-south, us-south-test, us-east, br-sao.
    description string
    Description of the vault.

    • Constraints: The maximum length is 200 characters. The minimum length is 0 characters. The value must match regular expression /(.|\\n)*/.
    hpcsVaultId string
    name string
    A human-readable name to assign to your vault. To protect your privacy, do not use personal data, such as your name or location.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9#@!$%'_-][A-Za-z0-9#@!$% '_-]*$/.
    instance_id str
    ID of UKO Instance

    • Constraints: Must match the ID of the UKO instance you are trying to work with.
    region str
    Region of the UKO Instance

    • Constraints: Must match the region of the UKO instance you are trying to work with. Allowable values are: au-syd, in-che, jp-osa, jp-tok, kr-seo, eu-de, eu-gb, ca-tor, us-south, us-south-test, us-east, br-sao.
    description str
    Description of the vault.

    • Constraints: The maximum length is 200 characters. The minimum length is 0 characters. The value must match regular expression /(.|\\n)*/.
    hpcs_vault_id str
    name str
    A human-readable name to assign to your vault. To protect your privacy, do not use personal data, such as your name or location.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9#@!$%'_-][A-Za-z0-9#@!$% '_-]*$/.
    instanceId String
    ID of UKO Instance

    • Constraints: Must match the ID of the UKO instance you are trying to work with.
    region String
    Region of the UKO Instance

    • Constraints: Must match the region of the UKO instance you are trying to work with. Allowable values are: au-syd, in-che, jp-osa, jp-tok, kr-seo, eu-de, eu-gb, ca-tor, us-south, us-south-test, us-east, br-sao.
    description String
    Description of the vault.

    • Constraints: The maximum length is 200 characters. The minimum length is 0 characters. The value must match regular expression /(.|\\n)*/.
    hpcsVaultId String
    name String
    A human-readable name to assign to your vault. To protect your privacy, do not use personal data, such as your name or location.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9#@!$%'_-][A-Za-z0-9#@!$% '_-]*$/.

    Outputs

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

    CreatedAt string
    (String) Date and time when the vault was created.
    CreatedBy string
    (String) ID of the user that created the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$%'_-]*$/.
    Etag string
    ETag identifier for hpcs_vault.
    Href string
    (String) A URL that uniquely identifies your cloud resource.

    • Constraints: The maximum length is 200 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._~:\/?&=-]+$/.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    (String) Date and time when the vault was last updated.
    UpdatedBy string
    (String) ID of the user that last updated the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$% '_-]*$/.
    VaultId string
    The unique identifier of the vault.
    CreatedAt string
    (String) Date and time when the vault was created.
    CreatedBy string
    (String) ID of the user that created the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$%'_-]*$/.
    Etag string
    ETag identifier for hpcs_vault.
    Href string
    (String) A URL that uniquely identifies your cloud resource.

    • Constraints: The maximum length is 200 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._~:\/?&=-]+$/.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    (String) Date and time when the vault was last updated.
    UpdatedBy string
    (String) ID of the user that last updated the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$% '_-]*$/.
    VaultId string
    The unique identifier of the vault.
    createdAt String
    (String) Date and time when the vault was created.
    createdBy String
    (String) ID of the user that created the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$%'_-]*$/.
    etag String
    ETag identifier for hpcs_vault.
    href String
    (String) A URL that uniquely identifies your cloud resource.

    • Constraints: The maximum length is 200 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._~:\/?&=-]+$/.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    (String) Date and time when the vault was last updated.
    updatedBy String
    (String) ID of the user that last updated the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$% '_-]*$/.
    vaultId String
    The unique identifier of the vault.
    createdAt string
    (String) Date and time when the vault was created.
    createdBy string
    (String) ID of the user that created the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$%'_-]*$/.
    etag string
    ETag identifier for hpcs_vault.
    href string
    (String) A URL that uniquely identifies your cloud resource.

    • Constraints: The maximum length is 200 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._~:\/?&=-]+$/.
    id string
    The provider-assigned unique ID for this managed resource.
    updatedAt string
    (String) Date and time when the vault was last updated.
    updatedBy string
    (String) ID of the user that last updated the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$% '_-]*$/.
    vaultId string
    The unique identifier of the vault.
    created_at str
    (String) Date and time when the vault was created.
    created_by str
    (String) ID of the user that created the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$%'_-]*$/.
    etag str
    ETag identifier for hpcs_vault.
    href str
    (String) A URL that uniquely identifies your cloud resource.

    • Constraints: The maximum length is 200 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._~:\/?&=-]+$/.
    id str
    The provider-assigned unique ID for this managed resource.
    updated_at str
    (String) Date and time when the vault was last updated.
    updated_by str
    (String) ID of the user that last updated the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$% '_-]*$/.
    vault_id str
    The unique identifier of the vault.
    createdAt String
    (String) Date and time when the vault was created.
    createdBy String
    (String) ID of the user that created the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$%'_-]*$/.
    etag String
    ETag identifier for hpcs_vault.
    href String
    (String) A URL that uniquely identifies your cloud resource.

    • Constraints: The maximum length is 200 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._~:\/?&=-]+$/.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    (String) Date and time when the vault was last updated.
    updatedBy String
    (String) ID of the user that last updated the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$% '_-]*$/.
    vaultId String
    The unique identifier of the vault.

    Look up Existing HpcsVault Resource

    Get an existing HpcsVault 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?: HpcsVaultState, opts?: CustomResourceOptions): HpcsVault
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            created_by: Optional[str] = None,
            description: Optional[str] = None,
            etag: Optional[str] = None,
            hpcs_vault_id: Optional[str] = None,
            href: Optional[str] = None,
            instance_id: Optional[str] = None,
            name: Optional[str] = None,
            region: Optional[str] = None,
            updated_at: Optional[str] = None,
            updated_by: Optional[str] = None,
            vault_id: Optional[str] = None) -> HpcsVault
    func GetHpcsVault(ctx *Context, name string, id IDInput, state *HpcsVaultState, opts ...ResourceOption) (*HpcsVault, error)
    public static HpcsVault Get(string name, Input<string> id, HpcsVaultState? state, CustomResourceOptions? opts = null)
    public static HpcsVault get(String name, Output<String> id, HpcsVaultState state, CustomResourceOptions options)
    resources:  _:    type: ibm:HpcsVault    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:
    CreatedAt string
    (String) Date and time when the vault was created.
    CreatedBy string
    (String) ID of the user that created the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$%'_-]*$/.
    Description string
    Description of the vault.

    • Constraints: The maximum length is 200 characters. The minimum length is 0 characters. The value must match regular expression /(.|\\n)*/.
    Etag string
    ETag identifier for hpcs_vault.
    HpcsVaultId string
    Href string
    (String) A URL that uniquely identifies your cloud resource.

    • Constraints: The maximum length is 200 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._~:\/?&=-]+$/.
    InstanceId string
    ID of UKO Instance

    • Constraints: Must match the ID of the UKO instance you are trying to work with.
    Name string
    A human-readable name to assign to your vault. To protect your privacy, do not use personal data, such as your name or location.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9#@!$%'_-][A-Za-z0-9#@!$% '_-]*$/.
    Region string
    Region of the UKO Instance

    • Constraints: Must match the region of the UKO instance you are trying to work with. Allowable values are: au-syd, in-che, jp-osa, jp-tok, kr-seo, eu-de, eu-gb, ca-tor, us-south, us-south-test, us-east, br-sao.
    UpdatedAt string
    (String) Date and time when the vault was last updated.
    UpdatedBy string
    (String) ID of the user that last updated the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$% '_-]*$/.
    VaultId string
    The unique identifier of the vault.
    CreatedAt string
    (String) Date and time when the vault was created.
    CreatedBy string
    (String) ID of the user that created the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$%'_-]*$/.
    Description string
    Description of the vault.

    • Constraints: The maximum length is 200 characters. The minimum length is 0 characters. The value must match regular expression /(.|\\n)*/.
    Etag string
    ETag identifier for hpcs_vault.
    HpcsVaultId string
    Href string
    (String) A URL that uniquely identifies your cloud resource.

    • Constraints: The maximum length is 200 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._~:\/?&=-]+$/.
    InstanceId string
    ID of UKO Instance

    • Constraints: Must match the ID of the UKO instance you are trying to work with.
    Name string
    A human-readable name to assign to your vault. To protect your privacy, do not use personal data, such as your name or location.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9#@!$%'_-][A-Za-z0-9#@!$% '_-]*$/.
    Region string
    Region of the UKO Instance

    • Constraints: Must match the region of the UKO instance you are trying to work with. Allowable values are: au-syd, in-che, jp-osa, jp-tok, kr-seo, eu-de, eu-gb, ca-tor, us-south, us-south-test, us-east, br-sao.
    UpdatedAt string
    (String) Date and time when the vault was last updated.
    UpdatedBy string
    (String) ID of the user that last updated the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$% '_-]*$/.
    VaultId string
    The unique identifier of the vault.
    createdAt String
    (String) Date and time when the vault was created.
    createdBy String
    (String) ID of the user that created the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$%'_-]*$/.
    description String
    Description of the vault.

    • Constraints: The maximum length is 200 characters. The minimum length is 0 characters. The value must match regular expression /(.|\\n)*/.
    etag String
    ETag identifier for hpcs_vault.
    hpcsVaultId String
    href String
    (String) A URL that uniquely identifies your cloud resource.

    • Constraints: The maximum length is 200 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._~:\/?&=-]+$/.
    instanceId String
    ID of UKO Instance

    • Constraints: Must match the ID of the UKO instance you are trying to work with.
    name String
    A human-readable name to assign to your vault. To protect your privacy, do not use personal data, such as your name or location.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9#@!$%'_-][A-Za-z0-9#@!$% '_-]*$/.
    region String
    Region of the UKO Instance

    • Constraints: Must match the region of the UKO instance you are trying to work with. Allowable values are: au-syd, in-che, jp-osa, jp-tok, kr-seo, eu-de, eu-gb, ca-tor, us-south, us-south-test, us-east, br-sao.
    updatedAt String
    (String) Date and time when the vault was last updated.
    updatedBy String
    (String) ID of the user that last updated the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$% '_-]*$/.
    vaultId String
    The unique identifier of the vault.
    createdAt string
    (String) Date and time when the vault was created.
    createdBy string
    (String) ID of the user that created the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$%'_-]*$/.
    description string
    Description of the vault.

    • Constraints: The maximum length is 200 characters. The minimum length is 0 characters. The value must match regular expression /(.|\\n)*/.
    etag string
    ETag identifier for hpcs_vault.
    hpcsVaultId string
    href string
    (String) A URL that uniquely identifies your cloud resource.

    • Constraints: The maximum length is 200 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._~:\/?&=-]+$/.
    instanceId string
    ID of UKO Instance

    • Constraints: Must match the ID of the UKO instance you are trying to work with.
    name string
    A human-readable name to assign to your vault. To protect your privacy, do not use personal data, such as your name or location.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9#@!$%'_-][A-Za-z0-9#@!$% '_-]*$/.
    region string
    Region of the UKO Instance

    • Constraints: Must match the region of the UKO instance you are trying to work with. Allowable values are: au-syd, in-che, jp-osa, jp-tok, kr-seo, eu-de, eu-gb, ca-tor, us-south, us-south-test, us-east, br-sao.
    updatedAt string
    (String) Date and time when the vault was last updated.
    updatedBy string
    (String) ID of the user that last updated the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$% '_-]*$/.
    vaultId string
    The unique identifier of the vault.
    created_at str
    (String) Date and time when the vault was created.
    created_by str
    (String) ID of the user that created the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$%'_-]*$/.
    description str
    Description of the vault.

    • Constraints: The maximum length is 200 characters. The minimum length is 0 characters. The value must match regular expression /(.|\\n)*/.
    etag str
    ETag identifier for hpcs_vault.
    hpcs_vault_id str
    href str
    (String) A URL that uniquely identifies your cloud resource.

    • Constraints: The maximum length is 200 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._~:\/?&=-]+$/.
    instance_id str
    ID of UKO Instance

    • Constraints: Must match the ID of the UKO instance you are trying to work with.
    name str
    A human-readable name to assign to your vault. To protect your privacy, do not use personal data, such as your name or location.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9#@!$%'_-][A-Za-z0-9#@!$% '_-]*$/.
    region str
    Region of the UKO Instance

    • Constraints: Must match the region of the UKO instance you are trying to work with. Allowable values are: au-syd, in-che, jp-osa, jp-tok, kr-seo, eu-de, eu-gb, ca-tor, us-south, us-south-test, us-east, br-sao.
    updated_at str
    (String) Date and time when the vault was last updated.
    updated_by str
    (String) ID of the user that last updated the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$% '_-]*$/.
    vault_id str
    The unique identifier of the vault.
    createdAt String
    (String) Date and time when the vault was created.
    createdBy String
    (String) ID of the user that created the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$%'_-]*$/.
    description String
    Description of the vault.

    • Constraints: The maximum length is 200 characters. The minimum length is 0 characters. The value must match regular expression /(.|\\n)*/.
    etag String
    ETag identifier for hpcs_vault.
    hpcsVaultId String
    href String
    (String) A URL that uniquely identifies your cloud resource.

    • Constraints: The maximum length is 200 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._~:\/?&=-]+$/.
    instanceId String
    ID of UKO Instance

    • Constraints: Must match the ID of the UKO instance you are trying to work with.
    name String
    A human-readable name to assign to your vault. To protect your privacy, do not use personal data, such as your name or location.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9#@!$%'_-][A-Za-z0-9#@!$% '_-]*$/.
    region String
    Region of the UKO Instance

    • Constraints: Must match the region of the UKO instance you are trying to work with. Allowable values are: au-syd, in-che, jp-osa, jp-tok, kr-seo, eu-de, eu-gb, ca-tor, us-south, us-south-test, us-east, br-sao.
    updatedAt String
    (String) Date and time when the vault was last updated.
    updatedBy String
    (String) ID of the user that last updated the vault.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z][A-Za-z0-9#@!$% '_-]*$/.
    vaultId String
    The unique identifier of the vault.

    Import

    You can import the ibm_hpcs_vault resource by using region, instance_id, and vault_id.

    Syntax

    bash

    $ pulumi import ibm:index/hpcsVault:HpcsVault vault <region>/<instance_id>/<vault_id>
    

    Example

    $ pulumi import ibm:index/hpcsVault:HpcsVault vault us-east/76195d24-8a31-4c6d-9050-c35f09375cfb/5295ad47-2ce9-43c3-b9e7-e5a9482c362b
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    ibm logo
    ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud