vault.MfaDuo
Explore with Pulumi AI
Provides a resource to manage Duo MFA.
Note this feature is available only with Vault Enterprise.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as vault from "@pulumi/vault";
const userpass = new vault.AuthBackend("userpass", {
type: "userpass",
path: "userpass",
});
const myDuo = new vault.MfaDuo("my_duo", {
name: "my_duo",
mountAccessor: userpass.accessor,
secretKey: "8C7THtrIigh2rPZQMbguugt8IUftWhMRCOBzbuyz",
integrationKey: "BIACEUEAXI20BNWTEYXT",
apiHostname: "api-2b5c39f5.duosecurity.com",
});
import pulumi
import pulumi_vault as vault
userpass = vault.AuthBackend("userpass",
type="userpass",
path="userpass")
my_duo = vault.MfaDuo("my_duo",
name="my_duo",
mount_accessor=userpass.accessor,
secret_key="8C7THtrIigh2rPZQMbguugt8IUftWhMRCOBzbuyz",
integration_key="BIACEUEAXI20BNWTEYXT",
api_hostname="api-2b5c39f5.duosecurity.com")
package main
import (
"github.com/pulumi/pulumi-vault/sdk/v6/go/vault"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
userpass, err := vault.NewAuthBackend(ctx, "userpass", &vault.AuthBackendArgs{
Type: pulumi.String("userpass"),
Path: pulumi.String("userpass"),
})
if err != nil {
return err
}
_, err = vault.NewMfaDuo(ctx, "my_duo", &vault.MfaDuoArgs{
Name: pulumi.String("my_duo"),
MountAccessor: userpass.Accessor,
SecretKey: pulumi.String("8C7THtrIigh2rPZQMbguugt8IUftWhMRCOBzbuyz"),
IntegrationKey: pulumi.String("BIACEUEAXI20BNWTEYXT"),
ApiHostname: pulumi.String("api-2b5c39f5.duosecurity.com"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vault = Pulumi.Vault;
return await Deployment.RunAsync(() =>
{
var userpass = new Vault.AuthBackend("userpass", new()
{
Type = "userpass",
Path = "userpass",
});
var myDuo = new Vault.MfaDuo("my_duo", new()
{
Name = "my_duo",
MountAccessor = userpass.Accessor,
SecretKey = "8C7THtrIigh2rPZQMbguugt8IUftWhMRCOBzbuyz",
IntegrationKey = "BIACEUEAXI20BNWTEYXT",
ApiHostname = "api-2b5c39f5.duosecurity.com",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vault.AuthBackend;
import com.pulumi.vault.AuthBackendArgs;
import com.pulumi.vault.MfaDuo;
import com.pulumi.vault.MfaDuoArgs;
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 userpass = new AuthBackend("userpass", AuthBackendArgs.builder()
.type("userpass")
.path("userpass")
.build());
var myDuo = new MfaDuo("myDuo", MfaDuoArgs.builder()
.name("my_duo")
.mountAccessor(userpass.accessor())
.secretKey("8C7THtrIigh2rPZQMbguugt8IUftWhMRCOBzbuyz")
.integrationKey("BIACEUEAXI20BNWTEYXT")
.apiHostname("api-2b5c39f5.duosecurity.com")
.build());
}
}
resources:
userpass:
type: vault:AuthBackend
properties:
type: userpass
path: userpass
myDuo:
type: vault:MfaDuo
name: my_duo
properties:
name: my_duo
mountAccessor: ${userpass.accessor}
secretKey: 8C7THtrIigh2rPZQMbguugt8IUftWhMRCOBzbuyz
integrationKey: BIACEUEAXI20BNWTEYXT
apiHostname: api-2b5c39f5.duosecurity.com
Create MfaDuo Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MfaDuo(name: string, args: MfaDuoArgs, opts?: CustomResourceOptions);
@overload
def MfaDuo(resource_name: str,
args: MfaDuoArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MfaDuo(resource_name: str,
opts: Optional[ResourceOptions] = None,
api_hostname: Optional[str] = None,
integration_key: Optional[str] = None,
mount_accessor: Optional[str] = None,
secret_key: Optional[str] = None,
name: Optional[str] = None,
namespace: Optional[str] = None,
push_info: Optional[str] = None,
username_format: Optional[str] = None)
func NewMfaDuo(ctx *Context, name string, args MfaDuoArgs, opts ...ResourceOption) (*MfaDuo, error)
public MfaDuo(string name, MfaDuoArgs args, CustomResourceOptions? opts = null)
public MfaDuo(String name, MfaDuoArgs args)
public MfaDuo(String name, MfaDuoArgs args, CustomResourceOptions options)
type: vault:MfaDuo
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 MfaDuoArgs
- 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 MfaDuoArgs
- 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 MfaDuoArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MfaDuoArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MfaDuoArgs
- 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 vaultMfaDuoResource = new Vault.MfaDuo("vaultMfaDuoResource", new()
{
ApiHostname = "string",
IntegrationKey = "string",
MountAccessor = "string",
SecretKey = "string",
Name = "string",
Namespace = "string",
PushInfo = "string",
UsernameFormat = "string",
});
example, err := vault.NewMfaDuo(ctx, "vaultMfaDuoResource", &vault.MfaDuoArgs{
ApiHostname: pulumi.String("string"),
IntegrationKey: pulumi.String("string"),
MountAccessor: pulumi.String("string"),
SecretKey: pulumi.String("string"),
Name: pulumi.String("string"),
Namespace: pulumi.String("string"),
PushInfo: pulumi.String("string"),
UsernameFormat: pulumi.String("string"),
})
var vaultMfaDuoResource = new MfaDuo("vaultMfaDuoResource", MfaDuoArgs.builder()
.apiHostname("string")
.integrationKey("string")
.mountAccessor("string")
.secretKey("string")
.name("string")
.namespace("string")
.pushInfo("string")
.usernameFormat("string")
.build());
vault_mfa_duo_resource = vault.MfaDuo("vaultMfaDuoResource",
api_hostname="string",
integration_key="string",
mount_accessor="string",
secret_key="string",
name="string",
namespace="string",
push_info="string",
username_format="string")
const vaultMfaDuoResource = new vault.MfaDuo("vaultMfaDuoResource", {
apiHostname: "string",
integrationKey: "string",
mountAccessor: "string",
secretKey: "string",
name: "string",
namespace: "string",
pushInfo: "string",
usernameFormat: "string",
});
type: vault:MfaDuo
properties:
apiHostname: string
integrationKey: string
mountAccessor: string
name: string
namespace: string
pushInfo: string
secretKey: string
usernameFormat: string
MfaDuo 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 MfaDuo resource accepts the following input properties:
- Api
Hostname string (string: <required>)
- API hostname for Duo.- Integration
Key string (string: <required>)
- Integration key for Duo.- Mount
Accessor string (string: <required>)
- The mount to tie this method to for use in automatic mappings. The mapping will use the Name field of Aliases associated with this mount as the username in the mapping.- Secret
Key string (string: <required>)
- Secret key for Duo.- Name string
(string: <required>)
– Name of the MFA method.- Namespace string
- The namespace to provision the resource in.
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. - Push
Info string (string)
- Push information for Duo.- Username
Format string (string)
- A format string for mapping Identity names to MFA method names. Values to substitute should be placed in{{}}
. For example,"{{alias.name}}@example.com"
. If blank, the Alias's Name field will be used as-is. Currently-supported mappings:- alias.name: The name returned by the mount configured via the
mount_accessor
parameter - entity.name: The name configured for the Entity
- alias.metadata.
<key>
: The value of the Alias's metadata parameter - entity.metadata.
<key>
: The value of the Entity's metadata parameter
- alias.name: The name returned by the mount configured via the
- Api
Hostname string (string: <required>)
- API hostname for Duo.- Integration
Key string (string: <required>)
- Integration key for Duo.- Mount
Accessor string (string: <required>)
- The mount to tie this method to for use in automatic mappings. The mapping will use the Name field of Aliases associated with this mount as the username in the mapping.- Secret
Key string (string: <required>)
- Secret key for Duo.- Name string
(string: <required>)
– Name of the MFA method.- Namespace string
- The namespace to provision the resource in.
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. - Push
Info string (string)
- Push information for Duo.- Username
Format string (string)
- A format string for mapping Identity names to MFA method names. Values to substitute should be placed in{{}}
. For example,"{{alias.name}}@example.com"
. If blank, the Alias's Name field will be used as-is. Currently-supported mappings:- alias.name: The name returned by the mount configured via the
mount_accessor
parameter - entity.name: The name configured for the Entity
- alias.metadata.
<key>
: The value of the Alias's metadata parameter - entity.metadata.
<key>
: The value of the Entity's metadata parameter
- alias.name: The name returned by the mount configured via the
- api
Hostname String (string: <required>)
- API hostname for Duo.- integration
Key String (string: <required>)
- Integration key for Duo.- mount
Accessor String (string: <required>)
- The mount to tie this method to for use in automatic mappings. The mapping will use the Name field of Aliases associated with this mount as the username in the mapping.- secret
Key String (string: <required>)
- Secret key for Duo.- name String
(string: <required>)
– Name of the MFA method.- namespace String
- The namespace to provision the resource in.
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. - push
Info String (string)
- Push information for Duo.- username
Format String (string)
- A format string for mapping Identity names to MFA method names. Values to substitute should be placed in{{}}
. For example,"{{alias.name}}@example.com"
. If blank, the Alias's Name field will be used as-is. Currently-supported mappings:- alias.name: The name returned by the mount configured via the
mount_accessor
parameter - entity.name: The name configured for the Entity
- alias.metadata.
<key>
: The value of the Alias's metadata parameter - entity.metadata.
<key>
: The value of the Entity's metadata parameter
- alias.name: The name returned by the mount configured via the
- api
Hostname string (string: <required>)
- API hostname for Duo.- integration
Key string (string: <required>)
- Integration key for Duo.- mount
Accessor string (string: <required>)
- The mount to tie this method to for use in automatic mappings. The mapping will use the Name field of Aliases associated with this mount as the username in the mapping.- secret
Key string (string: <required>)
- Secret key for Duo.- name string
(string: <required>)
– Name of the MFA method.- namespace string
- The namespace to provision the resource in.
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. - push
Info string (string)
- Push information for Duo.- username
Format string (string)
- A format string for mapping Identity names to MFA method names. Values to substitute should be placed in{{}}
. For example,"{{alias.name}}@example.com"
. If blank, the Alias's Name field will be used as-is. Currently-supported mappings:- alias.name: The name returned by the mount configured via the
mount_accessor
parameter - entity.name: The name configured for the Entity
- alias.metadata.
<key>
: The value of the Alias's metadata parameter - entity.metadata.
<key>
: The value of the Entity's metadata parameter
- alias.name: The name returned by the mount configured via the
- api_
hostname str (string: <required>)
- API hostname for Duo.- integration_
key str (string: <required>)
- Integration key for Duo.- mount_
accessor str (string: <required>)
- The mount to tie this method to for use in automatic mappings. The mapping will use the Name field of Aliases associated with this mount as the username in the mapping.- secret_
key str (string: <required>)
- Secret key for Duo.- name str
(string: <required>)
– Name of the MFA method.- namespace str
- The namespace to provision the resource in.
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. - push_
info str (string)
- Push information for Duo.- username_
format str (string)
- A format string for mapping Identity names to MFA method names. Values to substitute should be placed in{{}}
. For example,"{{alias.name}}@example.com"
. If blank, the Alias's Name field will be used as-is. Currently-supported mappings:- alias.name: The name returned by the mount configured via the
mount_accessor
parameter - entity.name: The name configured for the Entity
- alias.metadata.
<key>
: The value of the Alias's metadata parameter - entity.metadata.
<key>
: The value of the Entity's metadata parameter
- alias.name: The name returned by the mount configured via the
- api
Hostname String (string: <required>)
- API hostname for Duo.- integration
Key String (string: <required>)
- Integration key for Duo.- mount
Accessor String (string: <required>)
- The mount to tie this method to for use in automatic mappings. The mapping will use the Name field of Aliases associated with this mount as the username in the mapping.- secret
Key String (string: <required>)
- Secret key for Duo.- name String
(string: <required>)
– Name of the MFA method.- namespace String
- The namespace to provision the resource in.
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. - push
Info String (string)
- Push information for Duo.- username
Format String (string)
- A format string for mapping Identity names to MFA method names. Values to substitute should be placed in{{}}
. For example,"{{alias.name}}@example.com"
. If blank, the Alias's Name field will be used as-is. Currently-supported mappings:- alias.name: The name returned by the mount configured via the
mount_accessor
parameter - entity.name: The name configured for the Entity
- alias.metadata.
<key>
: The value of the Alias's metadata parameter - entity.metadata.
<key>
: The value of the Entity's metadata parameter
- alias.name: The name returned by the mount configured via the
Outputs
All input properties are implicitly available as output properties. Additionally, the MfaDuo 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 MfaDuo Resource
Get an existing MfaDuo 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?: MfaDuoState, opts?: CustomResourceOptions): MfaDuo
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
api_hostname: Optional[str] = None,
integration_key: Optional[str] = None,
mount_accessor: Optional[str] = None,
name: Optional[str] = None,
namespace: Optional[str] = None,
push_info: Optional[str] = None,
secret_key: Optional[str] = None,
username_format: Optional[str] = None) -> MfaDuo
func GetMfaDuo(ctx *Context, name string, id IDInput, state *MfaDuoState, opts ...ResourceOption) (*MfaDuo, error)
public static MfaDuo Get(string name, Input<string> id, MfaDuoState? state, CustomResourceOptions? opts = null)
public static MfaDuo get(String name, Output<String> id, MfaDuoState 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.
- Api
Hostname string (string: <required>)
- API hostname for Duo.- Integration
Key string (string: <required>)
- Integration key for Duo.- Mount
Accessor string (string: <required>)
- The mount to tie this method to for use in automatic mappings. The mapping will use the Name field of Aliases associated with this mount as the username in the mapping.- Name string
(string: <required>)
– Name of the MFA method.- Namespace string
- The namespace to provision the resource in.
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. - Push
Info string (string)
- Push information for Duo.- Secret
Key string (string: <required>)
- Secret key for Duo.- Username
Format string (string)
- A format string for mapping Identity names to MFA method names. Values to substitute should be placed in{{}}
. For example,"{{alias.name}}@example.com"
. If blank, the Alias's Name field will be used as-is. Currently-supported mappings:- alias.name: The name returned by the mount configured via the
mount_accessor
parameter - entity.name: The name configured for the Entity
- alias.metadata.
<key>
: The value of the Alias's metadata parameter - entity.metadata.
<key>
: The value of the Entity's metadata parameter
- alias.name: The name returned by the mount configured via the
- Api
Hostname string (string: <required>)
- API hostname for Duo.- Integration
Key string (string: <required>)
- Integration key for Duo.- Mount
Accessor string (string: <required>)
- The mount to tie this method to for use in automatic mappings. The mapping will use the Name field of Aliases associated with this mount as the username in the mapping.- Name string
(string: <required>)
– Name of the MFA method.- Namespace string
- The namespace to provision the resource in.
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. - Push
Info string (string)
- Push information for Duo.- Secret
Key string (string: <required>)
- Secret key for Duo.- Username
Format string (string)
- A format string for mapping Identity names to MFA method names. Values to substitute should be placed in{{}}
. For example,"{{alias.name}}@example.com"
. If blank, the Alias's Name field will be used as-is. Currently-supported mappings:- alias.name: The name returned by the mount configured via the
mount_accessor
parameter - entity.name: The name configured for the Entity
- alias.metadata.
<key>
: The value of the Alias's metadata parameter - entity.metadata.
<key>
: The value of the Entity's metadata parameter
- alias.name: The name returned by the mount configured via the
- api
Hostname String (string: <required>)
- API hostname for Duo.- integration
Key String (string: <required>)
- Integration key for Duo.- mount
Accessor String (string: <required>)
- The mount to tie this method to for use in automatic mappings. The mapping will use the Name field of Aliases associated with this mount as the username in the mapping.- name String
(string: <required>)
– Name of the MFA method.- namespace String
- The namespace to provision the resource in.
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. - push
Info String (string)
- Push information for Duo.- secret
Key String (string: <required>)
- Secret key for Duo.- username
Format String (string)
- A format string for mapping Identity names to MFA method names. Values to substitute should be placed in{{}}
. For example,"{{alias.name}}@example.com"
. If blank, the Alias's Name field will be used as-is. Currently-supported mappings:- alias.name: The name returned by the mount configured via the
mount_accessor
parameter - entity.name: The name configured for the Entity
- alias.metadata.
<key>
: The value of the Alias's metadata parameter - entity.metadata.
<key>
: The value of the Entity's metadata parameter
- alias.name: The name returned by the mount configured via the
- api
Hostname string (string: <required>)
- API hostname for Duo.- integration
Key string (string: <required>)
- Integration key for Duo.- mount
Accessor string (string: <required>)
- The mount to tie this method to for use in automatic mappings. The mapping will use the Name field of Aliases associated with this mount as the username in the mapping.- name string
(string: <required>)
– Name of the MFA method.- namespace string
- The namespace to provision the resource in.
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. - push
Info string (string)
- Push information for Duo.- secret
Key string (string: <required>)
- Secret key for Duo.- username
Format string (string)
- A format string for mapping Identity names to MFA method names. Values to substitute should be placed in{{}}
. For example,"{{alias.name}}@example.com"
. If blank, the Alias's Name field will be used as-is. Currently-supported mappings:- alias.name: The name returned by the mount configured via the
mount_accessor
parameter - entity.name: The name configured for the Entity
- alias.metadata.
<key>
: The value of the Alias's metadata parameter - entity.metadata.
<key>
: The value of the Entity's metadata parameter
- alias.name: The name returned by the mount configured via the
- api_
hostname str (string: <required>)
- API hostname for Duo.- integration_
key str (string: <required>)
- Integration key for Duo.- mount_
accessor str (string: <required>)
- The mount to tie this method to for use in automatic mappings. The mapping will use the Name field of Aliases associated with this mount as the username in the mapping.- name str
(string: <required>)
– Name of the MFA method.- namespace str
- The namespace to provision the resource in.
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. - push_
info str (string)
- Push information for Duo.- secret_
key str (string: <required>)
- Secret key for Duo.- username_
format str (string)
- A format string for mapping Identity names to MFA method names. Values to substitute should be placed in{{}}
. For example,"{{alias.name}}@example.com"
. If blank, the Alias's Name field will be used as-is. Currently-supported mappings:- alias.name: The name returned by the mount configured via the
mount_accessor
parameter - entity.name: The name configured for the Entity
- alias.metadata.
<key>
: The value of the Alias's metadata parameter - entity.metadata.
<key>
: The value of the Entity's metadata parameter
- alias.name: The name returned by the mount configured via the
- api
Hostname String (string: <required>)
- API hostname for Duo.- integration
Key String (string: <required>)
- Integration key for Duo.- mount
Accessor String (string: <required>)
- The mount to tie this method to for use in automatic mappings. The mapping will use the Name field of Aliases associated with this mount as the username in the mapping.- name String
(string: <required>)
– Name of the MFA method.- namespace String
- The namespace to provision the resource in.
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. - push
Info String (string)
- Push information for Duo.- secret
Key String (string: <required>)
- Secret key for Duo.- username
Format String (string)
- A format string for mapping Identity names to MFA method names. Values to substitute should be placed in{{}}
. For example,"{{alias.name}}@example.com"
. If blank, the Alias's Name field will be used as-is. Currently-supported mappings:- alias.name: The name returned by the mount configured via the
mount_accessor
parameter - entity.name: The name configured for the Entity
- alias.metadata.
<key>
: The value of the Alias's metadata parameter - entity.metadata.
<key>
: The value of the Entity's metadata parameter
- alias.name: The name returned by the mount configured via the
Import
Mounts can be imported using the path
, e.g.
$ pulumi import vault:index/mfaDuo:MfaDuo my_duo my_duo
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Vault pulumi/pulumi-vault
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
vault
Terraform Provider.