vault logo
HashiCorp Vault v5.11.0, Apr 25 23

vault.transform.Alphabet

Explore with Pulumi AI

This resource supports the “/transform/alphabet/{name}” Vault endpoint.

It queries an existing alphabet by the given name.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Vault = Pulumi.Vault;

return await Deployment.RunAsync(() => 
{
    var mountTransform = new Vault.Mount("mountTransform", new()
    {
        Path = "transform",
        Type = "transform",
    });

    var test = new Vault.Transform.Alphabet("test", new()
    {
        Path = mountTransform.Path,
        AlphabetSet = "0123456789",
    });

});
package main

import (
	"github.com/pulumi/pulumi-vault/sdk/v5/go/vault"
	"github.com/pulumi/pulumi-vault/sdk/v5/go/vault/transform"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		mountTransform, err := vault.NewMount(ctx, "mountTransform", &vault.MountArgs{
			Path: pulumi.String("transform"),
			Type: pulumi.String("transform"),
		})
		if err != nil {
			return err
		}
		_, err = transform.NewAlphabet(ctx, "test", &transform.AlphabetArgs{
			Path:     mountTransform.Path,
			Alphabet: pulumi.String("0123456789"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vault.Mount;
import com.pulumi.vault.MountArgs;
import com.pulumi.vault.transform.Alphabet;
import com.pulumi.vault.transform.AlphabetArgs;
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 mountTransform = new Mount("mountTransform", MountArgs.builder()        
            .path("transform")
            .type("transform")
            .build());

        var test = new Alphabet("test", AlphabetArgs.builder()        
            .path(mountTransform.path())
            .alphabet("0123456789")
            .build());

    }
}
import pulumi
import pulumi_vault as vault

mount_transform = vault.Mount("mountTransform",
    path="transform",
    type="transform")
test = vault.transform.Alphabet("test",
    path=mount_transform.path,
    alphabet="0123456789")
import * as pulumi from "@pulumi/pulumi";
import * as vault from "@pulumi/vault";

const mountTransform = new vault.Mount("mountTransform", {
    path: "transform",
    type: "transform",
});
const test = new vault.transform.Alphabet("test", {
    path: mountTransform.path,
    alphabet: "0123456789",
});
resources:
  mountTransform:
    type: vault:Mount
    properties:
      path: transform
      type: transform
  test:
    type: vault:transform:Alphabet
    properties:
      path: ${mountTransform.path}
      alphabet: 0123456789

Create Alphabet Resource

new Alphabet(name: string, args: AlphabetArgs, opts?: CustomResourceOptions);
@overload
def Alphabet(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             alphabet: Optional[str] = None,
             name: Optional[str] = None,
             path: Optional[str] = None)
@overload
def Alphabet(resource_name: str,
             args: AlphabetArgs,
             opts: Optional[ResourceOptions] = None)
func NewAlphabet(ctx *Context, name string, args AlphabetArgs, opts ...ResourceOption) (*Alphabet, error)
public Alphabet(string name, AlphabetArgs args, CustomResourceOptions? opts = null)
public Alphabet(String name, AlphabetArgs args)
public Alphabet(String name, AlphabetArgs args, CustomResourceOptions options)
type: vault:transform:Alphabet
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args AlphabetArgs
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 AlphabetArgs
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 AlphabetArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args AlphabetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args AlphabetArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Alphabet Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

The Alphabet resource accepts the following input properties:

Path string

Path to where the back-end is mounted within Vault.

AlphabetSet string

A string of characters that contains the alphabet set.

Name string

The name of the alphabet.

Path string

Path to where the back-end is mounted within Vault.

Alphabet string

A string of characters that contains the alphabet set.

Name string

The name of the alphabet.

path String

Path to where the back-end is mounted within Vault.

alphabet String

A string of characters that contains the alphabet set.

name String

The name of the alphabet.

path string

Path to where the back-end is mounted within Vault.

alphabet string

A string of characters that contains the alphabet set.

name string

The name of the alphabet.

path str

Path to where the back-end is mounted within Vault.

alphabet str

A string of characters that contains the alphabet set.

name str

The name of the alphabet.

path String

Path to where the back-end is mounted within Vault.

alphabet String

A string of characters that contains the alphabet set.

name String

The name of the alphabet.

Outputs

All input properties are implicitly available as output properties. Additionally, the Alphabet 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 Alphabet Resource

Get an existing Alphabet 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?: AlphabetState, opts?: CustomResourceOptions): Alphabet
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        alphabet: Optional[str] = None,
        name: Optional[str] = None,
        path: Optional[str] = None) -> Alphabet
func GetAlphabet(ctx *Context, name string, id IDInput, state *AlphabetState, opts ...ResourceOption) (*Alphabet, error)
public static Alphabet Get(string name, Input<string> id, AlphabetState? state, CustomResourceOptions? opts = null)
public static Alphabet get(String name, Output<String> id, AlphabetState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
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:
AlphabetSet string

A string of characters that contains the alphabet set.

Name string

The name of the alphabet.

Path string

Path to where the back-end is mounted within Vault.

Alphabet string

A string of characters that contains the alphabet set.

Name string

The name of the alphabet.

Path string

Path to where the back-end is mounted within Vault.

alphabet String

A string of characters that contains the alphabet set.

name String

The name of the alphabet.

path String

Path to where the back-end is mounted within Vault.

alphabet string

A string of characters that contains the alphabet set.

name string

The name of the alphabet.

path string

Path to where the back-end is mounted within Vault.

alphabet str

A string of characters that contains the alphabet set.

name str

The name of the alphabet.

path str

Path to where the back-end is mounted within Vault.

alphabet String

A string of characters that contains the alphabet set.

name String

The name of the alphabet.

path String

Path to where the back-end is mounted within Vault.

Package Details

Repository
Vault pulumi/pulumi-vault
License
Apache-2.0
Notes

This Pulumi package is based on the vault Terraform Provider.