MfaDuo

Provides a resource to manage Duo MFA.

Note this feature is available only with Vault Enterprise.

Example Usage

using Pulumi;
using Vault = Pulumi.Vault;

class MyStack : Stack
{
    public MyStack()
    {
        var userpass = new Vault.AuthBackend("userpass", new Vault.AuthBackendArgs
        {
            Path = "userpass",
            Type = "userpass",
        });
        var myDuo = new Vault.MfaDuo("myDuo", new Vault.MfaDuoArgs
        {
            ApiHostname = "api-2b5c39f5.duosecurity.com",
            IntegrationKey = "BIACEUEAXI20BNWTEYXT",
            MountAccessor = userpass.Accessor,
            SecretKey = "8C7THtrIigh2rPZQMbguugt8IUftWhMRCOBzbuyz",
        });
    }

}

Coming soon!

import pulumi
import pulumi_vault as vault

userpass = vault.AuthBackend("userpass",
    path="userpass",
    type="userpass")
my_duo = vault.MfaDuo("myDuo",
    api_hostname="api-2b5c39f5.duosecurity.com",
    integration_key="BIACEUEAXI20BNWTEYXT",
    mount_accessor=userpass.accessor,
    secret_key="8C7THtrIigh2rPZQMbguugt8IUftWhMRCOBzbuyz")
import * as pulumi from "@pulumi/pulumi";
import * as vault from "@pulumi/vault";

const userpass = new vault.AuthBackend("userpass", {
    path: "userpass",
    type: "userpass",
});
const myDuo = new vault.MfaDuo("my_duo", {
    apiHostname: "api-2b5c39f5.duosecurity.com",
    integrationKey: "BIACEUEAXI20BNWTEYXT",
    mountAccessor: userpass.accessor,
    secretKey: "8C7THtrIigh2rPZQMbguugt8IUftWhMRCOBzbuyz",
});

Create a MfaDuo Resource

new MfaDuo(name: string, args: MfaDuoArgs, opts?: CustomResourceOptions);
def MfaDuo(resource_name, opts=None, api_hostname=None, integration_key=None, mount_accessor=None, name=None, push_info=None, secret_key=None, username_format=None, __props__=None);
func NewMfaDuo(ctx *Context, name string, args MfaDuoArgs, opts ...ResourceOption) (*MfaDuo, error)
public MfaDuo(string name, MfaDuoArgs args, CustomResourceOptions? opts = null)
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.
opts ResourceOptions
A bag of options that control this 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.

MfaDuo Resource Properties

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

Inputs

The MfaDuo resource accepts the following input properties:

ApiHostname string

API hostname for Duo.

IntegrationKey string

Integration key for Duo.

MountAccessor string

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.

SecretKey string

Secret key for Duo.

Name string

Name of the MFA method.

PushInfo string

Push information for Duo.

UsernameFormat string

A format string for mapping Identity names to MFA method names. Values to substitute should be placed in {{}}.

ApiHostname string

API hostname for Duo.

IntegrationKey string

Integration key for Duo.

MountAccessor string

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.

SecretKey string

Secret key for Duo.

Name string

Name of the MFA method.

PushInfo string

Push information for Duo.

UsernameFormat string

A format string for mapping Identity names to MFA method names. Values to substitute should be placed in {{}}.

apiHostname string

API hostname for Duo.

integrationKey string

Integration key for Duo.

mountAccessor string

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.

secretKey string

Secret key for Duo.

name string

Name of the MFA method.

pushInfo string

Push information for Duo.

usernameFormat string

A format string for mapping Identity names to MFA method names. Values to substitute should be placed in {{}}.

api_hostname str

API hostname for Duo.

integration_key str

Integration key for Duo.

mount_accessor str

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

Secret key for Duo.

name str

Name of the MFA method.

push_info str

Push information for Duo.

username_format str

A format string for mapping Identity names to MFA method names. Values to substitute should be placed in {{}}.

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 str
The provider-assigned unique ID for this managed resource.

Look up an 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
static get(resource_name, id, opts=None, api_hostname=None, integration_key=None, mount_accessor=None, name=None, push_info=None, secret_key=None, username_format=None, __props__=None);
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)
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.

The following state arguments are supported:

ApiHostname string

API hostname for Duo.

IntegrationKey string

Integration key for Duo.

MountAccessor string

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

Name of the MFA method.

PushInfo string

Push information for Duo.

SecretKey string

Secret key for Duo.

UsernameFormat string

A format string for mapping Identity names to MFA method names. Values to substitute should be placed in {{}}.

ApiHostname string

API hostname for Duo.

IntegrationKey string

Integration key for Duo.

MountAccessor string

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

Name of the MFA method.

PushInfo string

Push information for Duo.

SecretKey string

Secret key for Duo.

UsernameFormat string

A format string for mapping Identity names to MFA method names. Values to substitute should be placed in {{}}.

apiHostname string

API hostname for Duo.

integrationKey string

Integration key for Duo.

mountAccessor string

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

Name of the MFA method.

pushInfo string

Push information for Duo.

secretKey string

Secret key for Duo.

usernameFormat string

A format string for mapping Identity names to MFA method names. Values to substitute should be placed in {{}}.

api_hostname str

API hostname for Duo.

integration_key str

Integration key for Duo.

mount_accessor str

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

Name of the MFA method.

push_info str

Push information for Duo.

secret_key str

Secret key for Duo.

username_format str

A format string for mapping Identity names to MFA method names. Values to substitute should be placed in {{}}.

Package Details

Repository
https://github.com/pulumi/pulumi-vault
License
Apache-2.0
Notes
This Pulumi package is based on the vault Terraform Provider.