vault.OciAuthBackend
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as vault from "@pulumi/vault";
const example = new vault.OciAuthBackend("example", {
path: exampleVaultAuthBackend.path,
homeTenancyId: "ocid1.tenancy.oc1..aaaaaaaah7zkvaffv26pzyauoe2zbnionqvhvsexamplee557wakiofi4ysgqq",
});
import pulumi
import pulumi_vault as vault
example = vault.OciAuthBackend("example",
path=example_vault_auth_backend["path"],
home_tenancy_id="ocid1.tenancy.oc1..aaaaaaaah7zkvaffv26pzyauoe2zbnionqvhvsexamplee557wakiofi4ysgqq")
package main
import (
"github.com/pulumi/pulumi-vault/sdk/v7/go/vault"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vault.NewOciAuthBackend(ctx, "example", &vault.OciAuthBackendArgs{
Path: pulumi.Any(exampleVaultAuthBackend.Path),
HomeTenancyId: pulumi.String("ocid1.tenancy.oc1..aaaaaaaah7zkvaffv26pzyauoe2zbnionqvhvsexamplee557wakiofi4ysgqq"),
})
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 example = new Vault.OciAuthBackend("example", new()
{
Path = exampleVaultAuthBackend.Path,
HomeTenancyId = "ocid1.tenancy.oc1..aaaaaaaah7zkvaffv26pzyauoe2zbnionqvhvsexamplee557wakiofi4ysgqq",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vault.OciAuthBackend;
import com.pulumi.vault.OciAuthBackendArgs;
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 example = new OciAuthBackend("example", OciAuthBackendArgs.builder()
.path(exampleVaultAuthBackend.path())
.homeTenancyId("ocid1.tenancy.oc1..aaaaaaaah7zkvaffv26pzyauoe2zbnionqvhvsexamplee557wakiofi4ysgqq")
.build());
}
}
resources:
example:
type: vault:OciAuthBackend
properties:
path: ${exampleVaultAuthBackend.path}
homeTenancyId: ocid1.tenancy.oc1..aaaaaaaah7zkvaffv26pzyauoe2zbnionqvhvsexamplee557wakiofi4ysgqq
Create OciAuthBackend Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OciAuthBackend(name: string, args: OciAuthBackendArgs, opts?: CustomResourceOptions);
@overload
def OciAuthBackend(resource_name: str,
args: OciAuthBackendArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OciAuthBackend(resource_name: str,
opts: Optional[ResourceOptions] = None,
home_tenancy_id: Optional[str] = None,
description: Optional[str] = None,
disable_automated_rotation: Optional[bool] = None,
disable_remount: Optional[bool] = None,
namespace: Optional[str] = None,
path: Optional[str] = None,
rotation_period: Optional[int] = None,
rotation_schedule: Optional[str] = None,
rotation_window: Optional[int] = None,
tune: Optional[OciAuthBackendTuneArgs] = None)
func NewOciAuthBackend(ctx *Context, name string, args OciAuthBackendArgs, opts ...ResourceOption) (*OciAuthBackend, error)
public OciAuthBackend(string name, OciAuthBackendArgs args, CustomResourceOptions? opts = null)
public OciAuthBackend(String name, OciAuthBackendArgs args)
public OciAuthBackend(String name, OciAuthBackendArgs args, CustomResourceOptions options)
type: vault:OciAuthBackend
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 OciAuthBackendArgs
- 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 OciAuthBackendArgs
- 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 OciAuthBackendArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OciAuthBackendArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OciAuthBackendArgs
- 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 ociAuthBackendResource = new Vault.OciAuthBackend("ociAuthBackendResource", new()
{
HomeTenancyId = "string",
Description = "string",
DisableAutomatedRotation = false,
DisableRemount = false,
Namespace = "string",
Path = "string",
RotationPeriod = 0,
RotationSchedule = "string",
RotationWindow = 0,
Tune = new Vault.Inputs.OciAuthBackendTuneArgs
{
AllowedResponseHeaders = new[]
{
"string",
},
AuditNonHmacRequestKeys = new[]
{
"string",
},
AuditNonHmacResponseKeys = new[]
{
"string",
},
DefaultLeaseTtl = "string",
ListingVisibility = "string",
MaxLeaseTtl = "string",
PassthroughRequestHeaders = new[]
{
"string",
},
TokenType = "string",
},
});
example, err := vault.NewOciAuthBackend(ctx, "ociAuthBackendResource", &vault.OciAuthBackendArgs{
HomeTenancyId: pulumi.String("string"),
Description: pulumi.String("string"),
DisableAutomatedRotation: pulumi.Bool(false),
DisableRemount: pulumi.Bool(false),
Namespace: pulumi.String("string"),
Path: pulumi.String("string"),
RotationPeriod: pulumi.Int(0),
RotationSchedule: pulumi.String("string"),
RotationWindow: pulumi.Int(0),
Tune: &vault.OciAuthBackendTuneArgs{
AllowedResponseHeaders: pulumi.StringArray{
pulumi.String("string"),
},
AuditNonHmacRequestKeys: pulumi.StringArray{
pulumi.String("string"),
},
AuditNonHmacResponseKeys: pulumi.StringArray{
pulumi.String("string"),
},
DefaultLeaseTtl: pulumi.String("string"),
ListingVisibility: pulumi.String("string"),
MaxLeaseTtl: pulumi.String("string"),
PassthroughRequestHeaders: pulumi.StringArray{
pulumi.String("string"),
},
TokenType: pulumi.String("string"),
},
})
var ociAuthBackendResource = new OciAuthBackend("ociAuthBackendResource", OciAuthBackendArgs.builder()
.homeTenancyId("string")
.description("string")
.disableAutomatedRotation(false)
.disableRemount(false)
.namespace("string")
.path("string")
.rotationPeriod(0)
.rotationSchedule("string")
.rotationWindow(0)
.tune(OciAuthBackendTuneArgs.builder()
.allowedResponseHeaders("string")
.auditNonHmacRequestKeys("string")
.auditNonHmacResponseKeys("string")
.defaultLeaseTtl("string")
.listingVisibility("string")
.maxLeaseTtl("string")
.passthroughRequestHeaders("string")
.tokenType("string")
.build())
.build());
oci_auth_backend_resource = vault.OciAuthBackend("ociAuthBackendResource",
home_tenancy_id="string",
description="string",
disable_automated_rotation=False,
disable_remount=False,
namespace="string",
path="string",
rotation_period=0,
rotation_schedule="string",
rotation_window=0,
tune={
"allowed_response_headers": ["string"],
"audit_non_hmac_request_keys": ["string"],
"audit_non_hmac_response_keys": ["string"],
"default_lease_ttl": "string",
"listing_visibility": "string",
"max_lease_ttl": "string",
"passthrough_request_headers": ["string"],
"token_type": "string",
})
const ociAuthBackendResource = new vault.OciAuthBackend("ociAuthBackendResource", {
homeTenancyId: "string",
description: "string",
disableAutomatedRotation: false,
disableRemount: false,
namespace: "string",
path: "string",
rotationPeriod: 0,
rotationSchedule: "string",
rotationWindow: 0,
tune: {
allowedResponseHeaders: ["string"],
auditNonHmacRequestKeys: ["string"],
auditNonHmacResponseKeys: ["string"],
defaultLeaseTtl: "string",
listingVisibility: "string",
maxLeaseTtl: "string",
passthroughRequestHeaders: ["string"],
tokenType: "string",
},
});
type: vault:OciAuthBackend
properties:
description: string
disableAutomatedRotation: false
disableRemount: false
homeTenancyId: string
namespace: string
path: string
rotationPeriod: 0
rotationSchedule: string
rotationWindow: 0
tune:
allowedResponseHeaders:
- string
auditNonHmacRequestKeys:
- string
auditNonHmacResponseKeys:
- string
defaultLeaseTtl: string
listingVisibility: string
maxLeaseTtl: string
passthroughRequestHeaders:
- string
tokenType: string
OciAuthBackend 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 OciAuthBackend resource accepts the following input properties:
- Home
Tenancy stringId - The Tenancy OCID of your OCI account.
- Description string
- A description of the auth backend.
- Disable
Automated boolRotation - Stops rotation of the root credential until set to false.
- Disable
Remount bool - If set, opts out of mount migration on path updates.
- 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. - Path string
- Unique name of the auth backend to configure.
- Rotation
Period int - The period of time in seconds between each rotation of the root credential. Cannot be used with rotation_schedule.
- Rotation
Schedule string - The cron-style schedule for the root credential to be rotated on. Cannot be used with rotation_period.
- Rotation
Window int - The maximum amount of time in seconds Vault is allowed to complete a rotation once a scheduled rotation is triggered. Can only be used with rotation_schedule.
- Tune
Oci
Auth Backend Tune Extra configuration block. Structure is documented below.
The
tune
block is used to tune the auth backend:
- Home
Tenancy stringId - The Tenancy OCID of your OCI account.
- Description string
- A description of the auth backend.
- Disable
Automated boolRotation - Stops rotation of the root credential until set to false.
- Disable
Remount bool - If set, opts out of mount migration on path updates.
- 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. - Path string
- Unique name of the auth backend to configure.
- Rotation
Period int - The period of time in seconds between each rotation of the root credential. Cannot be used with rotation_schedule.
- Rotation
Schedule string - The cron-style schedule for the root credential to be rotated on. Cannot be used with rotation_period.
- Rotation
Window int - The maximum amount of time in seconds Vault is allowed to complete a rotation once a scheduled rotation is triggered. Can only be used with rotation_schedule.
- Tune
Oci
Auth Backend Tune Args Extra configuration block. Structure is documented below.
The
tune
block is used to tune the auth backend:
- home
Tenancy StringId - The Tenancy OCID of your OCI account.
- description String
- A description of the auth backend.
- disable
Automated BooleanRotation - Stops rotation of the root credential until set to false.
- disable
Remount Boolean - If set, opts out of mount migration on path updates.
- 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. - path String
- Unique name of the auth backend to configure.
- rotation
Period Integer - The period of time in seconds between each rotation of the root credential. Cannot be used with rotation_schedule.
- rotation
Schedule String - The cron-style schedule for the root credential to be rotated on. Cannot be used with rotation_period.
- rotation
Window Integer - The maximum amount of time in seconds Vault is allowed to complete a rotation once a scheduled rotation is triggered. Can only be used with rotation_schedule.
- tune
Oci
Auth Backend Tune Extra configuration block. Structure is documented below.
The
tune
block is used to tune the auth backend:
- home
Tenancy stringId - The Tenancy OCID of your OCI account.
- description string
- A description of the auth backend.
- disable
Automated booleanRotation - Stops rotation of the root credential until set to false.
- disable
Remount boolean - If set, opts out of mount migration on path updates.
- 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. - path string
- Unique name of the auth backend to configure.
- rotation
Period number - The period of time in seconds between each rotation of the root credential. Cannot be used with rotation_schedule.
- rotation
Schedule string - The cron-style schedule for the root credential to be rotated on. Cannot be used with rotation_period.
- rotation
Window number - The maximum amount of time in seconds Vault is allowed to complete a rotation once a scheduled rotation is triggered. Can only be used with rotation_schedule.
- tune
Oci
Auth Backend Tune Extra configuration block. Structure is documented below.
The
tune
block is used to tune the auth backend:
- home_
tenancy_ strid - The Tenancy OCID of your OCI account.
- description str
- A description of the auth backend.
- disable_
automated_ boolrotation - Stops rotation of the root credential until set to false.
- disable_
remount bool - If set, opts out of mount migration on path updates.
- 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. - path str
- Unique name of the auth backend to configure.
- rotation_
period int - The period of time in seconds between each rotation of the root credential. Cannot be used with rotation_schedule.
- rotation_
schedule str - The cron-style schedule for the root credential to be rotated on. Cannot be used with rotation_period.
- rotation_
window int - The maximum amount of time in seconds Vault is allowed to complete a rotation once a scheduled rotation is triggered. Can only be used with rotation_schedule.
- tune
Oci
Auth Backend Tune Args Extra configuration block. Structure is documented below.
The
tune
block is used to tune the auth backend:
- home
Tenancy StringId - The Tenancy OCID of your OCI account.
- description String
- A description of the auth backend.
- disable
Automated BooleanRotation - Stops rotation of the root credential until set to false.
- disable
Remount Boolean - If set, opts out of mount migration on path updates.
- 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. - path String
- Unique name of the auth backend to configure.
- rotation
Period Number - The period of time in seconds between each rotation of the root credential. Cannot be used with rotation_schedule.
- rotation
Schedule String - The cron-style schedule for the root credential to be rotated on. Cannot be used with rotation_period.
- rotation
Window Number - The maximum amount of time in seconds Vault is allowed to complete a rotation once a scheduled rotation is triggered. Can only be used with rotation_schedule.
- tune Property Map
Extra configuration block. Structure is documented below.
The
tune
block is used to tune the auth backend:
Outputs
All input properties are implicitly available as output properties. Additionally, the OciAuthBackend resource produces the following output properties:
Look up Existing OciAuthBackend Resource
Get an existing OciAuthBackend 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?: OciAuthBackendState, opts?: CustomResourceOptions): OciAuthBackend
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
accessor: Optional[str] = None,
description: Optional[str] = None,
disable_automated_rotation: Optional[bool] = None,
disable_remount: Optional[bool] = None,
home_tenancy_id: Optional[str] = None,
namespace: Optional[str] = None,
path: Optional[str] = None,
rotation_period: Optional[int] = None,
rotation_schedule: Optional[str] = None,
rotation_window: Optional[int] = None,
tune: Optional[OciAuthBackendTuneArgs] = None) -> OciAuthBackend
func GetOciAuthBackend(ctx *Context, name string, id IDInput, state *OciAuthBackendState, opts ...ResourceOption) (*OciAuthBackend, error)
public static OciAuthBackend Get(string name, Input<string> id, OciAuthBackendState? state, CustomResourceOptions? opts = null)
public static OciAuthBackend get(String name, Output<String> id, OciAuthBackendState state, CustomResourceOptions options)
resources: _: type: vault:OciAuthBackend get: id: ${id}
- 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.
- Accessor string
- The accessor of the auth backend
- Description string
- A description of the auth backend.
- Disable
Automated boolRotation - Stops rotation of the root credential until set to false.
- Disable
Remount bool - If set, opts out of mount migration on path updates.
- Home
Tenancy stringId - The Tenancy OCID of your OCI account.
- 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. - Path string
- Unique name of the auth backend to configure.
- Rotation
Period int - The period of time in seconds between each rotation of the root credential. Cannot be used with rotation_schedule.
- Rotation
Schedule string - The cron-style schedule for the root credential to be rotated on. Cannot be used with rotation_period.
- Rotation
Window int - The maximum amount of time in seconds Vault is allowed to complete a rotation once a scheduled rotation is triggered. Can only be used with rotation_schedule.
- Tune
Oci
Auth Backend Tune Extra configuration block. Structure is documented below.
The
tune
block is used to tune the auth backend:
- Accessor string
- The accessor of the auth backend
- Description string
- A description of the auth backend.
- Disable
Automated boolRotation - Stops rotation of the root credential until set to false.
- Disable
Remount bool - If set, opts out of mount migration on path updates.
- Home
Tenancy stringId - The Tenancy OCID of your OCI account.
- 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. - Path string
- Unique name of the auth backend to configure.
- Rotation
Period int - The period of time in seconds between each rotation of the root credential. Cannot be used with rotation_schedule.
- Rotation
Schedule string - The cron-style schedule for the root credential to be rotated on. Cannot be used with rotation_period.
- Rotation
Window int - The maximum amount of time in seconds Vault is allowed to complete a rotation once a scheduled rotation is triggered. Can only be used with rotation_schedule.
- Tune
Oci
Auth Backend Tune Args Extra configuration block. Structure is documented below.
The
tune
block is used to tune the auth backend:
- accessor String
- The accessor of the auth backend
- description String
- A description of the auth backend.
- disable
Automated BooleanRotation - Stops rotation of the root credential until set to false.
- disable
Remount Boolean - If set, opts out of mount migration on path updates.
- home
Tenancy StringId - The Tenancy OCID of your OCI account.
- 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. - path String
- Unique name of the auth backend to configure.
- rotation
Period Integer - The period of time in seconds between each rotation of the root credential. Cannot be used with rotation_schedule.
- rotation
Schedule String - The cron-style schedule for the root credential to be rotated on. Cannot be used with rotation_period.
- rotation
Window Integer - The maximum amount of time in seconds Vault is allowed to complete a rotation once a scheduled rotation is triggered. Can only be used with rotation_schedule.
- tune
Oci
Auth Backend Tune Extra configuration block. Structure is documented below.
The
tune
block is used to tune the auth backend:
- accessor string
- The accessor of the auth backend
- description string
- A description of the auth backend.
- disable
Automated booleanRotation - Stops rotation of the root credential until set to false.
- disable
Remount boolean - If set, opts out of mount migration on path updates.
- home
Tenancy stringId - The Tenancy OCID of your OCI account.
- 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. - path string
- Unique name of the auth backend to configure.
- rotation
Period number - The period of time in seconds between each rotation of the root credential. Cannot be used with rotation_schedule.
- rotation
Schedule string - The cron-style schedule for the root credential to be rotated on. Cannot be used with rotation_period.
- rotation
Window number - The maximum amount of time in seconds Vault is allowed to complete a rotation once a scheduled rotation is triggered. Can only be used with rotation_schedule.
- tune
Oci
Auth Backend Tune Extra configuration block. Structure is documented below.
The
tune
block is used to tune the auth backend:
- accessor str
- The accessor of the auth backend
- description str
- A description of the auth backend.
- disable_
automated_ boolrotation - Stops rotation of the root credential until set to false.
- disable_
remount bool - If set, opts out of mount migration on path updates.
- home_
tenancy_ strid - The Tenancy OCID of your OCI account.
- 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. - path str
- Unique name of the auth backend to configure.
- rotation_
period int - The period of time in seconds between each rotation of the root credential. Cannot be used with rotation_schedule.
- rotation_
schedule str - The cron-style schedule for the root credential to be rotated on. Cannot be used with rotation_period.
- rotation_
window int - The maximum amount of time in seconds Vault is allowed to complete a rotation once a scheduled rotation is triggered. Can only be used with rotation_schedule.
- tune
Oci
Auth Backend Tune Args Extra configuration block. Structure is documented below.
The
tune
block is used to tune the auth backend:
- accessor String
- The accessor of the auth backend
- description String
- A description of the auth backend.
- disable
Automated BooleanRotation - Stops rotation of the root credential until set to false.
- disable
Remount Boolean - If set, opts out of mount migration on path updates.
- home
Tenancy StringId - The Tenancy OCID of your OCI account.
- 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. - path String
- Unique name of the auth backend to configure.
- rotation
Period Number - The period of time in seconds between each rotation of the root credential. Cannot be used with rotation_schedule.
- rotation
Schedule String - The cron-style schedule for the root credential to be rotated on. Cannot be used with rotation_period.
- rotation
Window Number - The maximum amount of time in seconds Vault is allowed to complete a rotation once a scheduled rotation is triggered. Can only be used with rotation_schedule.
- tune Property Map
Extra configuration block. Structure is documented below.
The
tune
block is used to tune the auth backend:
Supporting Types
OciAuthBackendTune, OciAuthBackendTuneArgs
- Allowed
Response List<string>Headers - List of headers to whitelist and allowing a plugin to include them in the response.
- Audit
Non List<string>Hmac Request Keys - Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
- Audit
Non List<string>Hmac Response Keys - Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
- Default
Lease stringTtl - Specifies the default time-to-live. If set, this overrides the global default. Must be a valid duration string
- Listing
Visibility string - Specifies whether to show this mount in the UI-specific listing endpoint. Valid values are "unauth" or "hidden".
- Max
Lease stringTtl - Specifies the maximum time-to-live. If set, this overrides the global default. Must be a valid duration string
- Passthrough
Request List<string>Headers - List of headers to whitelist and pass from the request to the backend.
- Token
Type string - Specifies the type of tokens that should be returned by the mount.
- Allowed
Response []stringHeaders - List of headers to whitelist and allowing a plugin to include them in the response.
- Audit
Non []stringHmac Request Keys - Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
- Audit
Non []stringHmac Response Keys - Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
- Default
Lease stringTtl - Specifies the default time-to-live. If set, this overrides the global default. Must be a valid duration string
- Listing
Visibility string - Specifies whether to show this mount in the UI-specific listing endpoint. Valid values are "unauth" or "hidden".
- Max
Lease stringTtl - Specifies the maximum time-to-live. If set, this overrides the global default. Must be a valid duration string
- Passthrough
Request []stringHeaders - List of headers to whitelist and pass from the request to the backend.
- Token
Type string - Specifies the type of tokens that should be returned by the mount.
- allowed
Response List<String>Headers - List of headers to whitelist and allowing a plugin to include them in the response.
- audit
Non List<String>Hmac Request Keys - Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
- audit
Non List<String>Hmac Response Keys - Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
- default
Lease StringTtl - Specifies the default time-to-live. If set, this overrides the global default. Must be a valid duration string
- listing
Visibility String - Specifies whether to show this mount in the UI-specific listing endpoint. Valid values are "unauth" or "hidden".
- max
Lease StringTtl - Specifies the maximum time-to-live. If set, this overrides the global default. Must be a valid duration string
- passthrough
Request List<String>Headers - List of headers to whitelist and pass from the request to the backend.
- token
Type String - Specifies the type of tokens that should be returned by the mount.
- allowed
Response string[]Headers - List of headers to whitelist and allowing a plugin to include them in the response.
- audit
Non string[]Hmac Request Keys - Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
- audit
Non string[]Hmac Response Keys - Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
- default
Lease stringTtl - Specifies the default time-to-live. If set, this overrides the global default. Must be a valid duration string
- listing
Visibility string - Specifies whether to show this mount in the UI-specific listing endpoint. Valid values are "unauth" or "hidden".
- max
Lease stringTtl - Specifies the maximum time-to-live. If set, this overrides the global default. Must be a valid duration string
- passthrough
Request string[]Headers - List of headers to whitelist and pass from the request to the backend.
- token
Type string - Specifies the type of tokens that should be returned by the mount.
- allowed_
response_ Sequence[str]headers - List of headers to whitelist and allowing a plugin to include them in the response.
- audit_
non_ Sequence[str]hmac_ request_ keys - Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
- audit_
non_ Sequence[str]hmac_ response_ keys - Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
- default_
lease_ strttl - Specifies the default time-to-live. If set, this overrides the global default. Must be a valid duration string
- listing_
visibility str - Specifies whether to show this mount in the UI-specific listing endpoint. Valid values are "unauth" or "hidden".
- max_
lease_ strttl - Specifies the maximum time-to-live. If set, this overrides the global default. Must be a valid duration string
- passthrough_
request_ Sequence[str]headers - List of headers to whitelist and pass from the request to the backend.
- token_
type str - Specifies the type of tokens that should be returned by the mount.
- allowed
Response List<String>Headers - List of headers to whitelist and allowing a plugin to include them in the response.
- audit
Non List<String>Hmac Request Keys - Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
- audit
Non List<String>Hmac Response Keys - Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
- default
Lease StringTtl - Specifies the default time-to-live. If set, this overrides the global default. Must be a valid duration string
- listing
Visibility String - Specifies whether to show this mount in the UI-specific listing endpoint. Valid values are "unauth" or "hidden".
- max
Lease StringTtl - Specifies the maximum time-to-live. If set, this overrides the global default. Must be a valid duration string
- passthrough
Request List<String>Headers - List of headers to whitelist and pass from the request to the backend.
- token
Type String - Specifies the type of tokens that should be returned by the mount.
Import
OCI auth backends can be imported using the backend’s path
, e.g.
$ pulumi import vault:index/ociAuthBackend:OciAuthBackend example oci
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.