1. Packages
  2. Ibm Provider
  3. API Docs
  4. HpcsVault
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

ibm.HpcsVault

Explore with Pulumi AI

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",
});
Copy
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")
Copy
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
	})
}
Copy
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",
    });

});
Copy
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());

    }
}
Copy
resources:
  vaultInstance:
    type: ibm:HpcsVault
    properties:
      description: example vault
      instanceId: 76195d24-8a31-4c6d-9050-c35f09375cfb
      region: us-east
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. HpcsVaultArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. HpcsVaultArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. HpcsVaultArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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",
});
Copy
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"),
})
Copy
var hpcsVaultResource = new HpcsVault("hpcsVaultResource", HpcsVaultArgs.builder()
    .instanceId("string")
    .region("string")
    .description("string")
    .hpcsVaultId("string")
    .name("string")
    .build());
Copy
hpcs_vault_resource = ibm.HpcsVault("hpcsVaultResource",
    instance_id="string",
    region="string",
    description="string",
    hpcs_vault_id="string",
    name="string")
Copy
const hpcsVaultResource = new ibm.HpcsVault("hpcsVaultResource", {
    instanceId: "string",
    region: "string",
    description: "string",
    hpcsVaultId: "string",
    name: "string",
});
Copy
type: ibm:HpcsVault
properties:
    description: string
    hpcsVaultId: string
    instanceId: string
    name: string
    region: string
Copy

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 This property is required. string
ID of UKO Instance

  • Constraints: Must match the ID of the UKO instance you are trying to work with.
Region This property is required. 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 This property is required. string
ID of UKO Instance

  • Constraints: Must match the ID of the UKO instance you are trying to work with.
Region This property is required. 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 This property is required. String
ID of UKO Instance

  • Constraints: Must match the ID of the UKO instance you are trying to work with.
region This property is required. 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 This property is required. string
ID of UKO Instance

  • Constraints: Must match the ID of the UKO instance you are trying to work with.
region This property is required. 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 This property is required. str
ID of UKO Instance

  • Constraints: Must match the ID of the UKO instance you are trying to work with.
region This property is required. 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 This property is required. String
ID of UKO Instance

  • Constraints: Must match the ID of the UKO instance you are trying to work with.
region This property is required. 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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
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>
Copy

Example

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

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.