get Backend Key
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as vault from "@pulumi/vault";
const pki = new vault.Mount("pki", {
path: "pki",
type: "pki",
description: "PKI secret engine mount",
});
const key = new vault.pkisecret.SecretBackendKey("key", {
backend: pki.path,
type: "internal",
keyName: "example",
keyType: "rsa",
keyBits: 4096,
});
const example = key.keyId.apply(keyId => vault.pkiSecret.getBackendKeyOutput({
backend: keyVaultMount.path,
keyRef: keyId,
}));
Content copied to clipboard
import pulumi
import pulumi_vault as vault
pki = vault.Mount("pki",
path="pki",
type="pki",
description="PKI secret engine mount")
key = vault.pki_secret.SecretBackendKey("key",
backend=pki.path,
type="internal",
key_name="example",
key_type="rsa",
key_bits=4096)
example = key.key_id.apply(lambda key_id: vault.pkiSecret.get_backend_key_output(backend=key_vault_mount["path"],
key_ref=key_id))
Content copied to clipboard
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vault = Pulumi.Vault;
return await Deployment.RunAsync(() =>
{
var pki = new Vault.Mount("pki", new()
{
Path = "pki",
Type = "pki",
Description = "PKI secret engine mount",
});
var key = new Vault.PkiSecret.SecretBackendKey("key", new()
{
Backend = pki.Path,
Type = "internal",
KeyName = "example",
KeyType = "rsa",
KeyBits = 4096,
});
var example = Vault.PkiSecret.GetBackendKey.Invoke(new()
{
Backend = keyVaultMount.Path,
KeyRef = key.KeyId,
});
});
Content copied to clipboard
package main
import (
"github.com/pulumi/pulumi-vault/sdk/v6/go/vault"
"github.com/pulumi/pulumi-vault/sdk/v6/go/vault/pkisecret"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
pki, err := vault.NewMount(ctx, "pki", &vault.MountArgs{
Path: pulumi.String("pki"),
Type: pulumi.String("pki"),
Description: pulumi.String("PKI secret engine mount"),
})
if err != nil {
return err
}
key, err := pkisecret.NewSecretBackendKey(ctx, "key", &pkisecret.SecretBackendKeyArgs{
Backend: pki.Path,
Type: pulumi.String("internal"),
KeyName: pulumi.String("example"),
KeyType: pulumi.String("rsa"),
KeyBits: pulumi.Int(4096),
})
if err != nil {
return err
}
_ = key.KeyId.ApplyT(func(keyId string) (pkisecret.GetBackendKeyResult, error) {
return pkisecret.GetBackendKeyResult(interface{}(pkisecret.GetBackendKeyOutput(ctx, pkisecret.GetBackendKeyOutputArgs{
Backend: keyVaultMount.Path,
KeyRef: keyId,
}, nil))), nil
}).(pkisecret.GetBackendKeyResultOutput)
return nil
})
}
Content copied to clipboard
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.pkiSecret.SecretBackendKey;
import com.pulumi.vault.pkiSecret.SecretBackendKeyArgs;
import com.pulumi.vault.pkiSecret.PkiSecretFunctions;
import com.pulumi.vault.pkiSecret.inputs.GetBackendKeyArgs;
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 pki = new Mount("pki", MountArgs.builder()
.path("pki")
.type("pki")
.description("PKI secret engine mount")
.build());
var key = new SecretBackendKey("key", SecretBackendKeyArgs.builder()
.backend(pki.path())
.type("internal")
.keyName("example")
.keyType("rsa")
.keyBits("4096")
.build());
final var example = PkiSecretFunctions.getBackendKey(GetBackendKeyArgs.builder()
.backend(keyVaultMount.path())
.keyRef(key.keyId())
.build());
}
}
Content copied to clipboard
resources:
pki:
type: vault:Mount
properties:
path: pki
type: pki
description: PKI secret engine mount
key:
type: vault:pkiSecret:SecretBackendKey
properties:
backend: ${pki.path}
type: internal
keyName: example
keyType: rsa
keyBits: '4096'
variables:
example:
fn::invoke:
function: vault:pkiSecret:getBackendKey
arguments:
backend: ${keyVaultMount.path}
keyRef: ${key.keyId}
Content copied to clipboard
Return
A collection of values returned by getBackendKey.
Parameters
argument
A collection of arguments for invoking getBackendKey.
suspend fun getBackendKey(backend: String, keyRef: String, namespace: String? = null): GetBackendKeyResult
Return
A collection of values returned by getBackendKey.
Parameters
backend
The path to the PKI secret backend to read the key from, with no leading or trailing /
s.
key Ref
Reference to an existing key.
namespace
The namespace of the target resource. The value should not contain leading or trailing forward slashes. The namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise.
See also
suspend fun getBackendKey(argument: suspend GetBackendKeyPlainArgsBuilder.() -> Unit): GetBackendKeyResult
Return
A collection of values returned by getBackendKey.
Parameters
argument
Builder for com.pulumi.vault.pkiSecret.kotlin.inputs.GetBackendKeyPlainArgs.