HashiCorp Vault
Alphabet
This resource supports the “/transform/alphabet/{name}” Vault endpoint.
It queries an existing alphabet by the given name.
Example Usage
using Pulumi;
using Vault = Pulumi.Vault;
class MyStack : Stack
{
public MyStack()
{
var mountTransform = new Vault.Mount("mountTransform", new Vault.MountArgs
{
Path = "transform",
Type = "transform",
});
var test = new Vault.Transform.Alphabet("test", new Vault.Transform.AlphabetArgs
{
Path = mountTransform.Path,
Alphabet = "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
})
}
Coming soon!
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",
});
Coming soon!
Create a 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.
- Alphabet
Set 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 an 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.
- Alphabet
Set 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
- https://github.com/pulumi/pulumi-vault
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
vault
Terraform Provider.