vault.aws.SecretBackend
Explore with Pulumi AI
Import
AWS secret backends can be imported using the path
, e.g.
$ pulumi import vault:aws/secretBackend:SecretBackend aws aws
Create SecretBackend Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SecretBackend(name: string, args?: SecretBackendArgs, opts?: CustomResourceOptions);
@overload
def SecretBackend(resource_name: str,
args: Optional[SecretBackendArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def SecretBackend(resource_name: str,
opts: Optional[ResourceOptions] = None,
access_key: Optional[str] = None,
allowed_managed_keys: Optional[Sequence[str]] = None,
allowed_response_headers: Optional[Sequence[str]] = None,
audit_non_hmac_request_keys: Optional[Sequence[str]] = None,
audit_non_hmac_response_keys: Optional[Sequence[str]] = None,
default_lease_ttl_seconds: Optional[int] = None,
delegated_auth_accessors: Optional[Sequence[str]] = None,
description: Optional[str] = None,
disable_automated_rotation: Optional[bool] = None,
disable_remount: Optional[bool] = None,
external_entropy_access: Optional[bool] = None,
force_no_cache: Optional[bool] = None,
iam_endpoint: Optional[str] = None,
identity_token_audience: Optional[str] = None,
identity_token_key: Optional[str] = None,
identity_token_ttl: Optional[int] = None,
listing_visibility: Optional[str] = None,
local: Optional[bool] = None,
max_lease_ttl_seconds: Optional[int] = None,
namespace: Optional[str] = None,
options: Optional[Mapping[str, str]] = None,
passthrough_request_headers: Optional[Sequence[str]] = None,
path: Optional[str] = None,
plugin_version: Optional[str] = None,
region: Optional[str] = None,
role_arn: Optional[str] = None,
rotation_period: Optional[int] = None,
rotation_schedule: Optional[str] = None,
rotation_window: Optional[int] = None,
seal_wrap: Optional[bool] = None,
secret_key: Optional[str] = None,
sts_endpoint: Optional[str] = None,
sts_fallback_endpoints: Optional[Sequence[str]] = None,
sts_fallback_regions: Optional[Sequence[str]] = None,
sts_region: Optional[str] = None,
username_template: Optional[str] = None)
func NewSecretBackend(ctx *Context, name string, args *SecretBackendArgs, opts ...ResourceOption) (*SecretBackend, error)
public SecretBackend(string name, SecretBackendArgs? args = null, CustomResourceOptions? opts = null)
public SecretBackend(String name, SecretBackendArgs args)
public SecretBackend(String name, SecretBackendArgs args, CustomResourceOptions options)
type: vault:aws:SecretBackend
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 SecretBackendArgs
- 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 SecretBackendArgs
- 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 SecretBackendArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SecretBackendArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SecretBackendArgs
- 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 vaultSecretBackendResource = new Vault.Aws.SecretBackend("vaultSecretBackendResource", new()
{
AccessKey = "string",
AllowedManagedKeys = new[]
{
"string",
},
AllowedResponseHeaders = new[]
{
"string",
},
AuditNonHmacRequestKeys = new[]
{
"string",
},
AuditNonHmacResponseKeys = new[]
{
"string",
},
DefaultLeaseTtlSeconds = 0,
DelegatedAuthAccessors = new[]
{
"string",
},
Description = "string",
DisableAutomatedRotation = false,
DisableRemount = false,
ExternalEntropyAccess = false,
ForceNoCache = false,
IamEndpoint = "string",
IdentityTokenAudience = "string",
IdentityTokenKey = "string",
IdentityTokenTtl = 0,
ListingVisibility = "string",
Local = false,
MaxLeaseTtlSeconds = 0,
Namespace = "string",
Options =
{
{ "string", "string" },
},
PassthroughRequestHeaders = new[]
{
"string",
},
Path = "string",
PluginVersion = "string",
Region = "string",
RoleArn = "string",
RotationPeriod = 0,
RotationSchedule = "string",
RotationWindow = 0,
SealWrap = false,
SecretKey = "string",
StsEndpoint = "string",
StsFallbackEndpoints = new[]
{
"string",
},
StsFallbackRegions = new[]
{
"string",
},
StsRegion = "string",
UsernameTemplate = "string",
});
example, err := aws.NewSecretBackend(ctx, "vaultSecretBackendResource", &aws.SecretBackendArgs{
AccessKey: pulumi.String("string"),
AllowedManagedKeys: pulumi.StringArray{
pulumi.String("string"),
},
AllowedResponseHeaders: pulumi.StringArray{
pulumi.String("string"),
},
AuditNonHmacRequestKeys: pulumi.StringArray{
pulumi.String("string"),
},
AuditNonHmacResponseKeys: pulumi.StringArray{
pulumi.String("string"),
},
DefaultLeaseTtlSeconds: pulumi.Int(0),
DelegatedAuthAccessors: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
DisableAutomatedRotation: pulumi.Bool(false),
DisableRemount: pulumi.Bool(false),
ExternalEntropyAccess: pulumi.Bool(false),
ForceNoCache: pulumi.Bool(false),
IamEndpoint: pulumi.String("string"),
IdentityTokenAudience: pulumi.String("string"),
IdentityTokenKey: pulumi.String("string"),
IdentityTokenTtl: pulumi.Int(0),
ListingVisibility: pulumi.String("string"),
Local: pulumi.Bool(false),
MaxLeaseTtlSeconds: pulumi.Int(0),
Namespace: pulumi.String("string"),
Options: pulumi.StringMap{
"string": pulumi.String("string"),
},
PassthroughRequestHeaders: pulumi.StringArray{
pulumi.String("string"),
},
Path: pulumi.String("string"),
PluginVersion: pulumi.String("string"),
Region: pulumi.String("string"),
RoleArn: pulumi.String("string"),
RotationPeriod: pulumi.Int(0),
RotationSchedule: pulumi.String("string"),
RotationWindow: pulumi.Int(0),
SealWrap: pulumi.Bool(false),
SecretKey: pulumi.String("string"),
StsEndpoint: pulumi.String("string"),
StsFallbackEndpoints: pulumi.StringArray{
pulumi.String("string"),
},
StsFallbackRegions: pulumi.StringArray{
pulumi.String("string"),
},
StsRegion: pulumi.String("string"),
UsernameTemplate: pulumi.String("string"),
})
var vaultSecretBackendResource = new com.pulumi.vault.aws.SecretBackend("vaultSecretBackendResource", com.pulumi.vault.aws.SecretBackendArgs.builder()
.accessKey("string")
.allowedManagedKeys("string")
.allowedResponseHeaders("string")
.auditNonHmacRequestKeys("string")
.auditNonHmacResponseKeys("string")
.defaultLeaseTtlSeconds(0)
.delegatedAuthAccessors("string")
.description("string")
.disableAutomatedRotation(false)
.disableRemount(false)
.externalEntropyAccess(false)
.forceNoCache(false)
.iamEndpoint("string")
.identityTokenAudience("string")
.identityTokenKey("string")
.identityTokenTtl(0)
.listingVisibility("string")
.local(false)
.maxLeaseTtlSeconds(0)
.namespace("string")
.options(Map.of("string", "string"))
.passthroughRequestHeaders("string")
.path("string")
.pluginVersion("string")
.region("string")
.roleArn("string")
.rotationPeriod(0)
.rotationSchedule("string")
.rotationWindow(0)
.sealWrap(false)
.secretKey("string")
.stsEndpoint("string")
.stsFallbackEndpoints("string")
.stsFallbackRegions("string")
.stsRegion("string")
.usernameTemplate("string")
.build());
vault_secret_backend_resource = vault.aws.SecretBackend("vaultSecretBackendResource",
access_key="string",
allowed_managed_keys=["string"],
allowed_response_headers=["string"],
audit_non_hmac_request_keys=["string"],
audit_non_hmac_response_keys=["string"],
default_lease_ttl_seconds=0,
delegated_auth_accessors=["string"],
description="string",
disable_automated_rotation=False,
disable_remount=False,
external_entropy_access=False,
force_no_cache=False,
iam_endpoint="string",
identity_token_audience="string",
identity_token_key="string",
identity_token_ttl=0,
listing_visibility="string",
local=False,
max_lease_ttl_seconds=0,
namespace="string",
options={
"string": "string",
},
passthrough_request_headers=["string"],
path="string",
plugin_version="string",
region="string",
role_arn="string",
rotation_period=0,
rotation_schedule="string",
rotation_window=0,
seal_wrap=False,
secret_key="string",
sts_endpoint="string",
sts_fallback_endpoints=["string"],
sts_fallback_regions=["string"],
sts_region="string",
username_template="string")
const vaultSecretBackendResource = new vault.aws.SecretBackend("vaultSecretBackendResource", {
accessKey: "string",
allowedManagedKeys: ["string"],
allowedResponseHeaders: ["string"],
auditNonHmacRequestKeys: ["string"],
auditNonHmacResponseKeys: ["string"],
defaultLeaseTtlSeconds: 0,
delegatedAuthAccessors: ["string"],
description: "string",
disableAutomatedRotation: false,
disableRemount: false,
externalEntropyAccess: false,
forceNoCache: false,
iamEndpoint: "string",
identityTokenAudience: "string",
identityTokenKey: "string",
identityTokenTtl: 0,
listingVisibility: "string",
local: false,
maxLeaseTtlSeconds: 0,
namespace: "string",
options: {
string: "string",
},
passthroughRequestHeaders: ["string"],
path: "string",
pluginVersion: "string",
region: "string",
roleArn: "string",
rotationPeriod: 0,
rotationSchedule: "string",
rotationWindow: 0,
sealWrap: false,
secretKey: "string",
stsEndpoint: "string",
stsFallbackEndpoints: ["string"],
stsFallbackRegions: ["string"],
stsRegion: "string",
usernameTemplate: "string",
});
type: vault:aws:SecretBackend
properties:
accessKey: string
allowedManagedKeys:
- string
allowedResponseHeaders:
- string
auditNonHmacRequestKeys:
- string
auditNonHmacResponseKeys:
- string
defaultLeaseTtlSeconds: 0
delegatedAuthAccessors:
- string
description: string
disableAutomatedRotation: false
disableRemount: false
externalEntropyAccess: false
forceNoCache: false
iamEndpoint: string
identityTokenAudience: string
identityTokenKey: string
identityTokenTtl: 0
listingVisibility: string
local: false
maxLeaseTtlSeconds: 0
namespace: string
options:
string: string
passthroughRequestHeaders:
- string
path: string
pluginVersion: string
region: string
roleArn: string
rotationPeriod: 0
rotationSchedule: string
rotationWindow: 0
sealWrap: false
secretKey: string
stsEndpoint: string
stsFallbackEndpoints:
- string
stsFallbackRegions:
- string
stsRegion: string
usernameTemplate: string
SecretBackend 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 SecretBackend resource accepts the following input properties:
- Access
Key string - The AWS Access Key ID this backend should use to issue new credentials. Vault uses the official AWS SDK to authenticate, and thus can also use standard AWS environment credentials, shared file credentials or IAM role/ECS task credentials.
- Allowed
Managed List<string>Keys - List of managed key registry entry names that the mount in question is allowed to access
- Allowed
Response List<string>Headers - List of headers to allow and pass from the request to the plugin
- 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 intTtl Seconds - Default lease duration for secrets in seconds
- Delegated
Auth List<string>Accessors - List of headers to allow and pass from the request to the plugin
- Description string
- Human-friendly description of the mount for the backend.
- Disable
Automated boolRotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+.
- Disable
Remount bool - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- External
Entropy boolAccess - Enable the secrets engine to access Vault's external entropy source
- Force
No boolCache - If set to true, disables caching.
- Iam
Endpoint string - Specifies a custom HTTP IAM endpoint to use.
- Identity
Token stringAudience - The audience claim value. Requires Vault 1.16+.
- Identity
Token stringKey - The key to use for signing identity tokens.
- Identity
Token intTtl - The TTL of generated identity tokens in seconds. Requires Vault 1.16+.
- Listing
Visibility string - Specifies whether to show this mount in the UI-specific listing endpoint
- Local bool
- Specifies if the secret backend is local only
- Max
Lease intTtl Seconds - Maximum possible lease duration for secrets in seconds
- 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. - Options Dictionary<string, string>
- Specifies mount type specific options that are passed to the backend
- Passthrough
Request List<string>Headers - List of headers to allow and pass from the request to the plugin
- Path string
- The unique path this backend should be mounted at. Must
not begin or end with a
/
. Defaults toaws
. - Plugin
Version string - Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
- Region string
- The AWS region to make API calls against. Defaults to us-east-1.
- Role
Arn string - Role ARN to assume for plugin identity token federation. Requires Vault 1.16+.
- Rotation
Period int - The amount of time in seconds Vault should wait before rotating the root credential. A zero value tells Vault not to rotate the root credential. The minimum rotation period is 10 seconds. Requires Vault Enterprise 1.19+.
- Rotation
Schedule string - The schedule, in cron-style time format, defining the schedule on which Vault should rotate the root token. Requires Vault Enterprise 1.19+.
- Rotation
Window int - The maximum amount of time in seconds allowed to complete
a rotation when a scheduled token rotation occurs. The default rotation window is
unbound and the minimum allowable window is
3600
. Requires Vault Enterprise 1.19+. - Seal
Wrap bool - Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
- Secret
Key string - The AWS Secret Access Key to use when generating new credentials.
- Sts
Endpoint string - Specifies a custom HTTP STS endpoint to use.
- Sts
Fallback List<string>Endpoints - Ordered list of
sts_endpoint
s to try if the defined one fails. Requires Vault 1.19+ - Sts
Fallback List<string>Regions - Ordered list of
sts_region
s matching the fallback endpoints. Should correspond in order with those endpoints. Requires Vault 1.19+ - Sts
Region string - Specifies the region of the STS endpoint. Should be included if
sts_endpoint
is supplied. Requires Vault 1.19+ - Username
Template string - Template describing how dynamic usernames are generated. The username template is used to generate both IAM usernames (capped at 64 characters) and STS usernames (capped at 32 characters). If no template is provided the field defaults to the template:
{{ if (eq .Type "STS") }} {{ printf "vault-%s-%s" (unix_time) (random 20) | truncate 32 }} {{ else }} {{ printf "vault-%s-%s-%s" (printf "%s-%s" (.DisplayName) (.PolicyName) | truncate 42) (unix_time) (random 20) | truncate 64 }} {{ end }}
- Access
Key string - The AWS Access Key ID this backend should use to issue new credentials. Vault uses the official AWS SDK to authenticate, and thus can also use standard AWS environment credentials, shared file credentials or IAM role/ECS task credentials.
- Allowed
Managed []stringKeys - List of managed key registry entry names that the mount in question is allowed to access
- Allowed
Response []stringHeaders - List of headers to allow and pass from the request to the plugin
- 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 intTtl Seconds - Default lease duration for secrets in seconds
- Delegated
Auth []stringAccessors - List of headers to allow and pass from the request to the plugin
- Description string
- Human-friendly description of the mount for the backend.
- Disable
Automated boolRotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+.
- Disable
Remount bool - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- External
Entropy boolAccess - Enable the secrets engine to access Vault's external entropy source
- Force
No boolCache - If set to true, disables caching.
- Iam
Endpoint string - Specifies a custom HTTP IAM endpoint to use.
- Identity
Token stringAudience - The audience claim value. Requires Vault 1.16+.
- Identity
Token stringKey - The key to use for signing identity tokens.
- Identity
Token intTtl - The TTL of generated identity tokens in seconds. Requires Vault 1.16+.
- Listing
Visibility string - Specifies whether to show this mount in the UI-specific listing endpoint
- Local bool
- Specifies if the secret backend is local only
- Max
Lease intTtl Seconds - Maximum possible lease duration for secrets in seconds
- 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. - Options map[string]string
- Specifies mount type specific options that are passed to the backend
- Passthrough
Request []stringHeaders - List of headers to allow and pass from the request to the plugin
- Path string
- The unique path this backend should be mounted at. Must
not begin or end with a
/
. Defaults toaws
. - Plugin
Version string - Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
- Region string
- The AWS region to make API calls against. Defaults to us-east-1.
- Role
Arn string - Role ARN to assume for plugin identity token federation. Requires Vault 1.16+.
- Rotation
Period int - The amount of time in seconds Vault should wait before rotating the root credential. A zero value tells Vault not to rotate the root credential. The minimum rotation period is 10 seconds. Requires Vault Enterprise 1.19+.
- Rotation
Schedule string - The schedule, in cron-style time format, defining the schedule on which Vault should rotate the root token. Requires Vault Enterprise 1.19+.
- Rotation
Window int - The maximum amount of time in seconds allowed to complete
a rotation when a scheduled token rotation occurs. The default rotation window is
unbound and the minimum allowable window is
3600
. Requires Vault Enterprise 1.19+. - Seal
Wrap bool - Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
- Secret
Key string - The AWS Secret Access Key to use when generating new credentials.
- Sts
Endpoint string - Specifies a custom HTTP STS endpoint to use.
- Sts
Fallback []stringEndpoints - Ordered list of
sts_endpoint
s to try if the defined one fails. Requires Vault 1.19+ - Sts
Fallback []stringRegions - Ordered list of
sts_region
s matching the fallback endpoints. Should correspond in order with those endpoints. Requires Vault 1.19+ - Sts
Region string - Specifies the region of the STS endpoint. Should be included if
sts_endpoint
is supplied. Requires Vault 1.19+ - Username
Template string - Template describing how dynamic usernames are generated. The username template is used to generate both IAM usernames (capped at 64 characters) and STS usernames (capped at 32 characters). If no template is provided the field defaults to the template:
{{ if (eq .Type "STS") }} {{ printf "vault-%s-%s" (unix_time) (random 20) | truncate 32 }} {{ else }} {{ printf "vault-%s-%s-%s" (printf "%s-%s" (.DisplayName) (.PolicyName) | truncate 42) (unix_time) (random 20) | truncate 64 }} {{ end }}
- access
Key String - The AWS Access Key ID this backend should use to issue new credentials. Vault uses the official AWS SDK to authenticate, and thus can also use standard AWS environment credentials, shared file credentials or IAM role/ECS task credentials.
- allowed
Managed List<String>Keys - List of managed key registry entry names that the mount in question is allowed to access
- allowed
Response List<String>Headers - List of headers to allow and pass from the request to the plugin
- 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 IntegerTtl Seconds - Default lease duration for secrets in seconds
- delegated
Auth List<String>Accessors - List of headers to allow and pass from the request to the plugin
- description String
- Human-friendly description of the mount for the backend.
- disable
Automated BooleanRotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+.
- disable
Remount Boolean - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- external
Entropy BooleanAccess - Enable the secrets engine to access Vault's external entropy source
- force
No BooleanCache - If set to true, disables caching.
- iam
Endpoint String - Specifies a custom HTTP IAM endpoint to use.
- identity
Token StringAudience - The audience claim value. Requires Vault 1.16+.
- identity
Token StringKey - The key to use for signing identity tokens.
- identity
Token IntegerTtl - The TTL of generated identity tokens in seconds. Requires Vault 1.16+.
- listing
Visibility String - Specifies whether to show this mount in the UI-specific listing endpoint
- local Boolean
- Specifies if the secret backend is local only
- max
Lease IntegerTtl Seconds - Maximum possible lease duration for secrets in seconds
- 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. - options Map<String,String>
- Specifies mount type specific options that are passed to the backend
- passthrough
Request List<String>Headers - List of headers to allow and pass from the request to the plugin
- path String
- The unique path this backend should be mounted at. Must
not begin or end with a
/
. Defaults toaws
. - plugin
Version String - Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
- region String
- The AWS region to make API calls against. Defaults to us-east-1.
- role
Arn String - Role ARN to assume for plugin identity token federation. Requires Vault 1.16+.
- rotation
Period Integer - The amount of time in seconds Vault should wait before rotating the root credential. A zero value tells Vault not to rotate the root credential. The minimum rotation period is 10 seconds. Requires Vault Enterprise 1.19+.
- rotation
Schedule String - The schedule, in cron-style time format, defining the schedule on which Vault should rotate the root token. Requires Vault Enterprise 1.19+.
- rotation
Window Integer - The maximum amount of time in seconds allowed to complete
a rotation when a scheduled token rotation occurs. The default rotation window is
unbound and the minimum allowable window is
3600
. Requires Vault Enterprise 1.19+. - seal
Wrap Boolean - Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
- secret
Key String - The AWS Secret Access Key to use when generating new credentials.
- sts
Endpoint String - Specifies a custom HTTP STS endpoint to use.
- sts
Fallback List<String>Endpoints - Ordered list of
sts_endpoint
s to try if the defined one fails. Requires Vault 1.19+ - sts
Fallback List<String>Regions - Ordered list of
sts_region
s matching the fallback endpoints. Should correspond in order with those endpoints. Requires Vault 1.19+ - sts
Region String - Specifies the region of the STS endpoint. Should be included if
sts_endpoint
is supplied. Requires Vault 1.19+ - username
Template String - Template describing how dynamic usernames are generated. The username template is used to generate both IAM usernames (capped at 64 characters) and STS usernames (capped at 32 characters). If no template is provided the field defaults to the template:
{{ if (eq .Type "STS") }} {{ printf "vault-%s-%s" (unix_time) (random 20) | truncate 32 }} {{ else }} {{ printf "vault-%s-%s-%s" (printf "%s-%s" (.DisplayName) (.PolicyName) | truncate 42) (unix_time) (random 20) | truncate 64 }} {{ end }}
- access
Key string - The AWS Access Key ID this backend should use to issue new credentials. Vault uses the official AWS SDK to authenticate, and thus can also use standard AWS environment credentials, shared file credentials or IAM role/ECS task credentials.
- allowed
Managed string[]Keys - List of managed key registry entry names that the mount in question is allowed to access
- allowed
Response string[]Headers - List of headers to allow and pass from the request to the plugin
- 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 numberTtl Seconds - Default lease duration for secrets in seconds
- delegated
Auth string[]Accessors - List of headers to allow and pass from the request to the plugin
- description string
- Human-friendly description of the mount for the backend.
- disable
Automated booleanRotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+.
- disable
Remount boolean - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- external
Entropy booleanAccess - Enable the secrets engine to access Vault's external entropy source
- force
No booleanCache - If set to true, disables caching.
- iam
Endpoint string - Specifies a custom HTTP IAM endpoint to use.
- identity
Token stringAudience - The audience claim value. Requires Vault 1.16+.
- identity
Token stringKey - The key to use for signing identity tokens.
- identity
Token numberTtl - The TTL of generated identity tokens in seconds. Requires Vault 1.16+.
- listing
Visibility string - Specifies whether to show this mount in the UI-specific listing endpoint
- local boolean
- Specifies if the secret backend is local only
- max
Lease numberTtl Seconds - Maximum possible lease duration for secrets in seconds
- 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. - options {[key: string]: string}
- Specifies mount type specific options that are passed to the backend
- passthrough
Request string[]Headers - List of headers to allow and pass from the request to the plugin
- path string
- The unique path this backend should be mounted at. Must
not begin or end with a
/
. Defaults toaws
. - plugin
Version string - Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
- region string
- The AWS region to make API calls against. Defaults to us-east-1.
- role
Arn string - Role ARN to assume for plugin identity token federation. Requires Vault 1.16+.
- rotation
Period number - The amount of time in seconds Vault should wait before rotating the root credential. A zero value tells Vault not to rotate the root credential. The minimum rotation period is 10 seconds. Requires Vault Enterprise 1.19+.
- rotation
Schedule string - The schedule, in cron-style time format, defining the schedule on which Vault should rotate the root token. Requires Vault Enterprise 1.19+.
- rotation
Window number - The maximum amount of time in seconds allowed to complete
a rotation when a scheduled token rotation occurs. The default rotation window is
unbound and the minimum allowable window is
3600
. Requires Vault Enterprise 1.19+. - seal
Wrap boolean - Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
- secret
Key string - The AWS Secret Access Key to use when generating new credentials.
- sts
Endpoint string - Specifies a custom HTTP STS endpoint to use.
- sts
Fallback string[]Endpoints - Ordered list of
sts_endpoint
s to try if the defined one fails. Requires Vault 1.19+ - sts
Fallback string[]Regions - Ordered list of
sts_region
s matching the fallback endpoints. Should correspond in order with those endpoints. Requires Vault 1.19+ - sts
Region string - Specifies the region of the STS endpoint. Should be included if
sts_endpoint
is supplied. Requires Vault 1.19+ - username
Template string - Template describing how dynamic usernames are generated. The username template is used to generate both IAM usernames (capped at 64 characters) and STS usernames (capped at 32 characters). If no template is provided the field defaults to the template:
{{ if (eq .Type "STS") }} {{ printf "vault-%s-%s" (unix_time) (random 20) | truncate 32 }} {{ else }} {{ printf "vault-%s-%s-%s" (printf "%s-%s" (.DisplayName) (.PolicyName) | truncate 42) (unix_time) (random 20) | truncate 64 }} {{ end }}
- access_
key str - The AWS Access Key ID this backend should use to issue new credentials. Vault uses the official AWS SDK to authenticate, and thus can also use standard AWS environment credentials, shared file credentials or IAM role/ECS task credentials.
- allowed_
managed_ Sequence[str]keys - List of managed key registry entry names that the mount in question is allowed to access
- allowed_
response_ Sequence[str]headers - List of headers to allow and pass from the request to the plugin
- 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_ intttl_ seconds - Default lease duration for secrets in seconds
- delegated_
auth_ Sequence[str]accessors - List of headers to allow and pass from the request to the plugin
- description str
- Human-friendly description of the mount for the backend.
- disable_
automated_ boolrotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+.
- disable_
remount bool - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- external_
entropy_ boolaccess - Enable the secrets engine to access Vault's external entropy source
- force_
no_ boolcache - If set to true, disables caching.
- iam_
endpoint str - Specifies a custom HTTP IAM endpoint to use.
- identity_
token_ straudience - The audience claim value. Requires Vault 1.16+.
- identity_
token_ strkey - The key to use for signing identity tokens.
- identity_
token_ intttl - The TTL of generated identity tokens in seconds. Requires Vault 1.16+.
- listing_
visibility str - Specifies whether to show this mount in the UI-specific listing endpoint
- local bool
- Specifies if the secret backend is local only
- max_
lease_ intttl_ seconds - Maximum possible lease duration for secrets in seconds
- 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. - options Mapping[str, str]
- Specifies mount type specific options that are passed to the backend
- passthrough_
request_ Sequence[str]headers - List of headers to allow and pass from the request to the plugin
- path str
- The unique path this backend should be mounted at. Must
not begin or end with a
/
. Defaults toaws
. - plugin_
version str - Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
- region str
- The AWS region to make API calls against. Defaults to us-east-1.
- role_
arn str - Role ARN to assume for plugin identity token federation. Requires Vault 1.16+.
- rotation_
period int - The amount of time in seconds Vault should wait before rotating the root credential. A zero value tells Vault not to rotate the root credential. The minimum rotation period is 10 seconds. Requires Vault Enterprise 1.19+.
- rotation_
schedule str - The schedule, in cron-style time format, defining the schedule on which Vault should rotate the root token. Requires Vault Enterprise 1.19+.
- rotation_
window int - The maximum amount of time in seconds allowed to complete
a rotation when a scheduled token rotation occurs. The default rotation window is
unbound and the minimum allowable window is
3600
. Requires Vault Enterprise 1.19+. - seal_
wrap bool - Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
- secret_
key str - The AWS Secret Access Key to use when generating new credentials.
- sts_
endpoint str - Specifies a custom HTTP STS endpoint to use.
- sts_
fallback_ Sequence[str]endpoints - Ordered list of
sts_endpoint
s to try if the defined one fails. Requires Vault 1.19+ - sts_
fallback_ Sequence[str]regions - Ordered list of
sts_region
s matching the fallback endpoints. Should correspond in order with those endpoints. Requires Vault 1.19+ - sts_
region str - Specifies the region of the STS endpoint. Should be included if
sts_endpoint
is supplied. Requires Vault 1.19+ - username_
template str - Template describing how dynamic usernames are generated. The username template is used to generate both IAM usernames (capped at 64 characters) and STS usernames (capped at 32 characters). If no template is provided the field defaults to the template:
{{ if (eq .Type "STS") }} {{ printf "vault-%s-%s" (unix_time) (random 20) | truncate 32 }} {{ else }} {{ printf "vault-%s-%s-%s" (printf "%s-%s" (.DisplayName) (.PolicyName) | truncate 42) (unix_time) (random 20) | truncate 64 }} {{ end }}
- access
Key String - The AWS Access Key ID this backend should use to issue new credentials. Vault uses the official AWS SDK to authenticate, and thus can also use standard AWS environment credentials, shared file credentials or IAM role/ECS task credentials.
- allowed
Managed List<String>Keys - List of managed key registry entry names that the mount in question is allowed to access
- allowed
Response List<String>Headers - List of headers to allow and pass from the request to the plugin
- 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 NumberTtl Seconds - Default lease duration for secrets in seconds
- delegated
Auth List<String>Accessors - List of headers to allow and pass from the request to the plugin
- description String
- Human-friendly description of the mount for the backend.
- disable
Automated BooleanRotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+.
- disable
Remount Boolean - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- external
Entropy BooleanAccess - Enable the secrets engine to access Vault's external entropy source
- force
No BooleanCache - If set to true, disables caching.
- iam
Endpoint String - Specifies a custom HTTP IAM endpoint to use.
- identity
Token StringAudience - The audience claim value. Requires Vault 1.16+.
- identity
Token StringKey - The key to use for signing identity tokens.
- identity
Token NumberTtl - The TTL of generated identity tokens in seconds. Requires Vault 1.16+.
- listing
Visibility String - Specifies whether to show this mount in the UI-specific listing endpoint
- local Boolean
- Specifies if the secret backend is local only
- max
Lease NumberTtl Seconds - Maximum possible lease duration for secrets in seconds
- 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. - options Map<String>
- Specifies mount type specific options that are passed to the backend
- passthrough
Request List<String>Headers - List of headers to allow and pass from the request to the plugin
- path String
- The unique path this backend should be mounted at. Must
not begin or end with a
/
. Defaults toaws
. - plugin
Version String - Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
- region String
- The AWS region to make API calls against. Defaults to us-east-1.
- role
Arn String - Role ARN to assume for plugin identity token federation. Requires Vault 1.16+.
- rotation
Period Number - The amount of time in seconds Vault should wait before rotating the root credential. A zero value tells Vault not to rotate the root credential. The minimum rotation period is 10 seconds. Requires Vault Enterprise 1.19+.
- rotation
Schedule String - The schedule, in cron-style time format, defining the schedule on which Vault should rotate the root token. Requires Vault Enterprise 1.19+.
- rotation
Window Number - The maximum amount of time in seconds allowed to complete
a rotation when a scheduled token rotation occurs. The default rotation window is
unbound and the minimum allowable window is
3600
. Requires Vault Enterprise 1.19+. - seal
Wrap Boolean - Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
- secret
Key String - The AWS Secret Access Key to use when generating new credentials.
- sts
Endpoint String - Specifies a custom HTTP STS endpoint to use.
- sts
Fallback List<String>Endpoints - Ordered list of
sts_endpoint
s to try if the defined one fails. Requires Vault 1.19+ - sts
Fallback List<String>Regions - Ordered list of
sts_region
s matching the fallback endpoints. Should correspond in order with those endpoints. Requires Vault 1.19+ - sts
Region String - Specifies the region of the STS endpoint. Should be included if
sts_endpoint
is supplied. Requires Vault 1.19+ - username
Template String - Template describing how dynamic usernames are generated. The username template is used to generate both IAM usernames (capped at 64 characters) and STS usernames (capped at 32 characters). If no template is provided the field defaults to the template:
{{ if (eq .Type "STS") }} {{ printf "vault-%s-%s" (unix_time) (random 20) | truncate 32 }} {{ else }} {{ printf "vault-%s-%s-%s" (printf "%s-%s" (.DisplayName) (.PolicyName) | truncate 42) (unix_time) (random 20) | truncate 64 }} {{ end }}
Outputs
All input properties are implicitly available as output properties. Additionally, the SecretBackend resource produces the following output properties:
Look up Existing SecretBackend Resource
Get an existing SecretBackend 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?: SecretBackendState, opts?: CustomResourceOptions): SecretBackend
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_key: Optional[str] = None,
accessor: Optional[str] = None,
allowed_managed_keys: Optional[Sequence[str]] = None,
allowed_response_headers: Optional[Sequence[str]] = None,
audit_non_hmac_request_keys: Optional[Sequence[str]] = None,
audit_non_hmac_response_keys: Optional[Sequence[str]] = None,
default_lease_ttl_seconds: Optional[int] = None,
delegated_auth_accessors: Optional[Sequence[str]] = None,
description: Optional[str] = None,
disable_automated_rotation: Optional[bool] = None,
disable_remount: Optional[bool] = None,
external_entropy_access: Optional[bool] = None,
force_no_cache: Optional[bool] = None,
iam_endpoint: Optional[str] = None,
identity_token_audience: Optional[str] = None,
identity_token_key: Optional[str] = None,
identity_token_ttl: Optional[int] = None,
listing_visibility: Optional[str] = None,
local: Optional[bool] = None,
max_lease_ttl_seconds: Optional[int] = None,
namespace: Optional[str] = None,
options: Optional[Mapping[str, str]] = None,
passthrough_request_headers: Optional[Sequence[str]] = None,
path: Optional[str] = None,
plugin_version: Optional[str] = None,
region: Optional[str] = None,
role_arn: Optional[str] = None,
rotation_period: Optional[int] = None,
rotation_schedule: Optional[str] = None,
rotation_window: Optional[int] = None,
seal_wrap: Optional[bool] = None,
secret_key: Optional[str] = None,
sts_endpoint: Optional[str] = None,
sts_fallback_endpoints: Optional[Sequence[str]] = None,
sts_fallback_regions: Optional[Sequence[str]] = None,
sts_region: Optional[str] = None,
username_template: Optional[str] = None) -> SecretBackend
func GetSecretBackend(ctx *Context, name string, id IDInput, state *SecretBackendState, opts ...ResourceOption) (*SecretBackend, error)
public static SecretBackend Get(string name, Input<string> id, SecretBackendState? state, CustomResourceOptions? opts = null)
public static SecretBackend get(String name, Output<String> id, SecretBackendState state, CustomResourceOptions options)
resources: _: type: vault:aws:SecretBackend 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.
- Access
Key string - The AWS Access Key ID this backend should use to issue new credentials. Vault uses the official AWS SDK to authenticate, and thus can also use standard AWS environment credentials, shared file credentials or IAM role/ECS task credentials.
- Accessor string
- Accessor of the mount
- Allowed
Managed List<string>Keys - List of managed key registry entry names that the mount in question is allowed to access
- Allowed
Response List<string>Headers - List of headers to allow and pass from the request to the plugin
- 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 intTtl Seconds - Default lease duration for secrets in seconds
- Delegated
Auth List<string>Accessors - List of headers to allow and pass from the request to the plugin
- Description string
- Human-friendly description of the mount for the backend.
- Disable
Automated boolRotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+.
- Disable
Remount bool - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- External
Entropy boolAccess - Enable the secrets engine to access Vault's external entropy source
- Force
No boolCache - If set to true, disables caching.
- Iam
Endpoint string - Specifies a custom HTTP IAM endpoint to use.
- Identity
Token stringAudience - The audience claim value. Requires Vault 1.16+.
- Identity
Token stringKey - The key to use for signing identity tokens.
- Identity
Token intTtl - The TTL of generated identity tokens in seconds. Requires Vault 1.16+.
- Listing
Visibility string - Specifies whether to show this mount in the UI-specific listing endpoint
- Local bool
- Specifies if the secret backend is local only
- Max
Lease intTtl Seconds - Maximum possible lease duration for secrets in seconds
- 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. - Options Dictionary<string, string>
- Specifies mount type specific options that are passed to the backend
- Passthrough
Request List<string>Headers - List of headers to allow and pass from the request to the plugin
- Path string
- The unique path this backend should be mounted at. Must
not begin or end with a
/
. Defaults toaws
. - Plugin
Version string - Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
- Region string
- The AWS region to make API calls against. Defaults to us-east-1.
- Role
Arn string - Role ARN to assume for plugin identity token federation. Requires Vault 1.16+.
- Rotation
Period int - The amount of time in seconds Vault should wait before rotating the root credential. A zero value tells Vault not to rotate the root credential. The minimum rotation period is 10 seconds. Requires Vault Enterprise 1.19+.
- Rotation
Schedule string - The schedule, in cron-style time format, defining the schedule on which Vault should rotate the root token. Requires Vault Enterprise 1.19+.
- Rotation
Window int - The maximum amount of time in seconds allowed to complete
a rotation when a scheduled token rotation occurs. The default rotation window is
unbound and the minimum allowable window is
3600
. Requires Vault Enterprise 1.19+. - Seal
Wrap bool - Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
- Secret
Key string - The AWS Secret Access Key to use when generating new credentials.
- Sts
Endpoint string - Specifies a custom HTTP STS endpoint to use.
- Sts
Fallback List<string>Endpoints - Ordered list of
sts_endpoint
s to try if the defined one fails. Requires Vault 1.19+ - Sts
Fallback List<string>Regions - Ordered list of
sts_region
s matching the fallback endpoints. Should correspond in order with those endpoints. Requires Vault 1.19+ - Sts
Region string - Specifies the region of the STS endpoint. Should be included if
sts_endpoint
is supplied. Requires Vault 1.19+ - Username
Template string - Template describing how dynamic usernames are generated. The username template is used to generate both IAM usernames (capped at 64 characters) and STS usernames (capped at 32 characters). If no template is provided the field defaults to the template:
{{ if (eq .Type "STS") }} {{ printf "vault-%s-%s" (unix_time) (random 20) | truncate 32 }} {{ else }} {{ printf "vault-%s-%s-%s" (printf "%s-%s" (.DisplayName) (.PolicyName) | truncate 42) (unix_time) (random 20) | truncate 64 }} {{ end }}
- Access
Key string - The AWS Access Key ID this backend should use to issue new credentials. Vault uses the official AWS SDK to authenticate, and thus can also use standard AWS environment credentials, shared file credentials or IAM role/ECS task credentials.
- Accessor string
- Accessor of the mount
- Allowed
Managed []stringKeys - List of managed key registry entry names that the mount in question is allowed to access
- Allowed
Response []stringHeaders - List of headers to allow and pass from the request to the plugin
- 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 intTtl Seconds - Default lease duration for secrets in seconds
- Delegated
Auth []stringAccessors - List of headers to allow and pass from the request to the plugin
- Description string
- Human-friendly description of the mount for the backend.
- Disable
Automated boolRotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+.
- Disable
Remount bool - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- External
Entropy boolAccess - Enable the secrets engine to access Vault's external entropy source
- Force
No boolCache - If set to true, disables caching.
- Iam
Endpoint string - Specifies a custom HTTP IAM endpoint to use.
- Identity
Token stringAudience - The audience claim value. Requires Vault 1.16+.
- Identity
Token stringKey - The key to use for signing identity tokens.
- Identity
Token intTtl - The TTL of generated identity tokens in seconds. Requires Vault 1.16+.
- Listing
Visibility string - Specifies whether to show this mount in the UI-specific listing endpoint
- Local bool
- Specifies if the secret backend is local only
- Max
Lease intTtl Seconds - Maximum possible lease duration for secrets in seconds
- 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. - Options map[string]string
- Specifies mount type specific options that are passed to the backend
- Passthrough
Request []stringHeaders - List of headers to allow and pass from the request to the plugin
- Path string
- The unique path this backend should be mounted at. Must
not begin or end with a
/
. Defaults toaws
. - Plugin
Version string - Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
- Region string
- The AWS region to make API calls against. Defaults to us-east-1.
- Role
Arn string - Role ARN to assume for plugin identity token federation. Requires Vault 1.16+.
- Rotation
Period int - The amount of time in seconds Vault should wait before rotating the root credential. A zero value tells Vault not to rotate the root credential. The minimum rotation period is 10 seconds. Requires Vault Enterprise 1.19+.
- Rotation
Schedule string - The schedule, in cron-style time format, defining the schedule on which Vault should rotate the root token. Requires Vault Enterprise 1.19+.
- Rotation
Window int - The maximum amount of time in seconds allowed to complete
a rotation when a scheduled token rotation occurs. The default rotation window is
unbound and the minimum allowable window is
3600
. Requires Vault Enterprise 1.19+. - Seal
Wrap bool - Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
- Secret
Key string - The AWS Secret Access Key to use when generating new credentials.
- Sts
Endpoint string - Specifies a custom HTTP STS endpoint to use.
- Sts
Fallback []stringEndpoints - Ordered list of
sts_endpoint
s to try if the defined one fails. Requires Vault 1.19+ - Sts
Fallback []stringRegions - Ordered list of
sts_region
s matching the fallback endpoints. Should correspond in order with those endpoints. Requires Vault 1.19+ - Sts
Region string - Specifies the region of the STS endpoint. Should be included if
sts_endpoint
is supplied. Requires Vault 1.19+ - Username
Template string - Template describing how dynamic usernames are generated. The username template is used to generate both IAM usernames (capped at 64 characters) and STS usernames (capped at 32 characters). If no template is provided the field defaults to the template:
{{ if (eq .Type "STS") }} {{ printf "vault-%s-%s" (unix_time) (random 20) | truncate 32 }} {{ else }} {{ printf "vault-%s-%s-%s" (printf "%s-%s" (.DisplayName) (.PolicyName) | truncate 42) (unix_time) (random 20) | truncate 64 }} {{ end }}
- access
Key String - The AWS Access Key ID this backend should use to issue new credentials. Vault uses the official AWS SDK to authenticate, and thus can also use standard AWS environment credentials, shared file credentials or IAM role/ECS task credentials.
- accessor String
- Accessor of the mount
- allowed
Managed List<String>Keys - List of managed key registry entry names that the mount in question is allowed to access
- allowed
Response List<String>Headers - List of headers to allow and pass from the request to the plugin
- 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 IntegerTtl Seconds - Default lease duration for secrets in seconds
- delegated
Auth List<String>Accessors - List of headers to allow and pass from the request to the plugin
- description String
- Human-friendly description of the mount for the backend.
- disable
Automated BooleanRotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+.
- disable
Remount Boolean - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- external
Entropy BooleanAccess - Enable the secrets engine to access Vault's external entropy source
- force
No BooleanCache - If set to true, disables caching.
- iam
Endpoint String - Specifies a custom HTTP IAM endpoint to use.
- identity
Token StringAudience - The audience claim value. Requires Vault 1.16+.
- identity
Token StringKey - The key to use for signing identity tokens.
- identity
Token IntegerTtl - The TTL of generated identity tokens in seconds. Requires Vault 1.16+.
- listing
Visibility String - Specifies whether to show this mount in the UI-specific listing endpoint
- local Boolean
- Specifies if the secret backend is local only
- max
Lease IntegerTtl Seconds - Maximum possible lease duration for secrets in seconds
- 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. - options Map<String,String>
- Specifies mount type specific options that are passed to the backend
- passthrough
Request List<String>Headers - List of headers to allow and pass from the request to the plugin
- path String
- The unique path this backend should be mounted at. Must
not begin or end with a
/
. Defaults toaws
. - plugin
Version String - Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
- region String
- The AWS region to make API calls against. Defaults to us-east-1.
- role
Arn String - Role ARN to assume for plugin identity token federation. Requires Vault 1.16+.
- rotation
Period Integer - The amount of time in seconds Vault should wait before rotating the root credential. A zero value tells Vault not to rotate the root credential. The minimum rotation period is 10 seconds. Requires Vault Enterprise 1.19+.
- rotation
Schedule String - The schedule, in cron-style time format, defining the schedule on which Vault should rotate the root token. Requires Vault Enterprise 1.19+.
- rotation
Window Integer - The maximum amount of time in seconds allowed to complete
a rotation when a scheduled token rotation occurs. The default rotation window is
unbound and the minimum allowable window is
3600
. Requires Vault Enterprise 1.19+. - seal
Wrap Boolean - Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
- secret
Key String - The AWS Secret Access Key to use when generating new credentials.
- sts
Endpoint String - Specifies a custom HTTP STS endpoint to use.
- sts
Fallback List<String>Endpoints - Ordered list of
sts_endpoint
s to try if the defined one fails. Requires Vault 1.19+ - sts
Fallback List<String>Regions - Ordered list of
sts_region
s matching the fallback endpoints. Should correspond in order with those endpoints. Requires Vault 1.19+ - sts
Region String - Specifies the region of the STS endpoint. Should be included if
sts_endpoint
is supplied. Requires Vault 1.19+ - username
Template String - Template describing how dynamic usernames are generated. The username template is used to generate both IAM usernames (capped at 64 characters) and STS usernames (capped at 32 characters). If no template is provided the field defaults to the template:
{{ if (eq .Type "STS") }} {{ printf "vault-%s-%s" (unix_time) (random 20) | truncate 32 }} {{ else }} {{ printf "vault-%s-%s-%s" (printf "%s-%s" (.DisplayName) (.PolicyName) | truncate 42) (unix_time) (random 20) | truncate 64 }} {{ end }}
- access
Key string - The AWS Access Key ID this backend should use to issue new credentials. Vault uses the official AWS SDK to authenticate, and thus can also use standard AWS environment credentials, shared file credentials or IAM role/ECS task credentials.
- accessor string
- Accessor of the mount
- allowed
Managed string[]Keys - List of managed key registry entry names that the mount in question is allowed to access
- allowed
Response string[]Headers - List of headers to allow and pass from the request to the plugin
- 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 numberTtl Seconds - Default lease duration for secrets in seconds
- delegated
Auth string[]Accessors - List of headers to allow and pass from the request to the plugin
- description string
- Human-friendly description of the mount for the backend.
- disable
Automated booleanRotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+.
- disable
Remount boolean - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- external
Entropy booleanAccess - Enable the secrets engine to access Vault's external entropy source
- force
No booleanCache - If set to true, disables caching.
- iam
Endpoint string - Specifies a custom HTTP IAM endpoint to use.
- identity
Token stringAudience - The audience claim value. Requires Vault 1.16+.
- identity
Token stringKey - The key to use for signing identity tokens.
- identity
Token numberTtl - The TTL of generated identity tokens in seconds. Requires Vault 1.16+.
- listing
Visibility string - Specifies whether to show this mount in the UI-specific listing endpoint
- local boolean
- Specifies if the secret backend is local only
- max
Lease numberTtl Seconds - Maximum possible lease duration for secrets in seconds
- 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. - options {[key: string]: string}
- Specifies mount type specific options that are passed to the backend
- passthrough
Request string[]Headers - List of headers to allow and pass from the request to the plugin
- path string
- The unique path this backend should be mounted at. Must
not begin or end with a
/
. Defaults toaws
. - plugin
Version string - Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
- region string
- The AWS region to make API calls against. Defaults to us-east-1.
- role
Arn string - Role ARN to assume for plugin identity token federation. Requires Vault 1.16+.
- rotation
Period number - The amount of time in seconds Vault should wait before rotating the root credential. A zero value tells Vault not to rotate the root credential. The minimum rotation period is 10 seconds. Requires Vault Enterprise 1.19+.
- rotation
Schedule string - The schedule, in cron-style time format, defining the schedule on which Vault should rotate the root token. Requires Vault Enterprise 1.19+.
- rotation
Window number - The maximum amount of time in seconds allowed to complete
a rotation when a scheduled token rotation occurs. The default rotation window is
unbound and the minimum allowable window is
3600
. Requires Vault Enterprise 1.19+. - seal
Wrap boolean - Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
- secret
Key string - The AWS Secret Access Key to use when generating new credentials.
- sts
Endpoint string - Specifies a custom HTTP STS endpoint to use.
- sts
Fallback string[]Endpoints - Ordered list of
sts_endpoint
s to try if the defined one fails. Requires Vault 1.19+ - sts
Fallback string[]Regions - Ordered list of
sts_region
s matching the fallback endpoints. Should correspond in order with those endpoints. Requires Vault 1.19+ - sts
Region string - Specifies the region of the STS endpoint. Should be included if
sts_endpoint
is supplied. Requires Vault 1.19+ - username
Template string - Template describing how dynamic usernames are generated. The username template is used to generate both IAM usernames (capped at 64 characters) and STS usernames (capped at 32 characters). If no template is provided the field defaults to the template:
{{ if (eq .Type "STS") }} {{ printf "vault-%s-%s" (unix_time) (random 20) | truncate 32 }} {{ else }} {{ printf "vault-%s-%s-%s" (printf "%s-%s" (.DisplayName) (.PolicyName) | truncate 42) (unix_time) (random 20) | truncate 64 }} {{ end }}
- access_
key str - The AWS Access Key ID this backend should use to issue new credentials. Vault uses the official AWS SDK to authenticate, and thus can also use standard AWS environment credentials, shared file credentials or IAM role/ECS task credentials.
- accessor str
- Accessor of the mount
- allowed_
managed_ Sequence[str]keys - List of managed key registry entry names that the mount in question is allowed to access
- allowed_
response_ Sequence[str]headers - List of headers to allow and pass from the request to the plugin
- 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_ intttl_ seconds - Default lease duration for secrets in seconds
- delegated_
auth_ Sequence[str]accessors - List of headers to allow and pass from the request to the plugin
- description str
- Human-friendly description of the mount for the backend.
- disable_
automated_ boolrotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+.
- disable_
remount bool - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- external_
entropy_ boolaccess - Enable the secrets engine to access Vault's external entropy source
- force_
no_ boolcache - If set to true, disables caching.
- iam_
endpoint str - Specifies a custom HTTP IAM endpoint to use.
- identity_
token_ straudience - The audience claim value. Requires Vault 1.16+.
- identity_
token_ strkey - The key to use for signing identity tokens.
- identity_
token_ intttl - The TTL of generated identity tokens in seconds. Requires Vault 1.16+.
- listing_
visibility str - Specifies whether to show this mount in the UI-specific listing endpoint
- local bool
- Specifies if the secret backend is local only
- max_
lease_ intttl_ seconds - Maximum possible lease duration for secrets in seconds
- 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. - options Mapping[str, str]
- Specifies mount type specific options that are passed to the backend
- passthrough_
request_ Sequence[str]headers - List of headers to allow and pass from the request to the plugin
- path str
- The unique path this backend should be mounted at. Must
not begin or end with a
/
. Defaults toaws
. - plugin_
version str - Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
- region str
- The AWS region to make API calls against. Defaults to us-east-1.
- role_
arn str - Role ARN to assume for plugin identity token federation. Requires Vault 1.16+.
- rotation_
period int - The amount of time in seconds Vault should wait before rotating the root credential. A zero value tells Vault not to rotate the root credential. The minimum rotation period is 10 seconds. Requires Vault Enterprise 1.19+.
- rotation_
schedule str - The schedule, in cron-style time format, defining the schedule on which Vault should rotate the root token. Requires Vault Enterprise 1.19+.
- rotation_
window int - The maximum amount of time in seconds allowed to complete
a rotation when a scheduled token rotation occurs. The default rotation window is
unbound and the minimum allowable window is
3600
. Requires Vault Enterprise 1.19+. - seal_
wrap bool - Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
- secret_
key str - The AWS Secret Access Key to use when generating new credentials.
- sts_
endpoint str - Specifies a custom HTTP STS endpoint to use.
- sts_
fallback_ Sequence[str]endpoints - Ordered list of
sts_endpoint
s to try if the defined one fails. Requires Vault 1.19+ - sts_
fallback_ Sequence[str]regions - Ordered list of
sts_region
s matching the fallback endpoints. Should correspond in order with those endpoints. Requires Vault 1.19+ - sts_
region str - Specifies the region of the STS endpoint. Should be included if
sts_endpoint
is supplied. Requires Vault 1.19+ - username_
template str - Template describing how dynamic usernames are generated. The username template is used to generate both IAM usernames (capped at 64 characters) and STS usernames (capped at 32 characters). If no template is provided the field defaults to the template:
{{ if (eq .Type "STS") }} {{ printf "vault-%s-%s" (unix_time) (random 20) | truncate 32 }} {{ else }} {{ printf "vault-%s-%s-%s" (printf "%s-%s" (.DisplayName) (.PolicyName) | truncate 42) (unix_time) (random 20) | truncate 64 }} {{ end }}
- access
Key String - The AWS Access Key ID this backend should use to issue new credentials. Vault uses the official AWS SDK to authenticate, and thus can also use standard AWS environment credentials, shared file credentials or IAM role/ECS task credentials.
- accessor String
- Accessor of the mount
- allowed
Managed List<String>Keys - List of managed key registry entry names that the mount in question is allowed to access
- allowed
Response List<String>Headers - List of headers to allow and pass from the request to the plugin
- 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 NumberTtl Seconds - Default lease duration for secrets in seconds
- delegated
Auth List<String>Accessors - List of headers to allow and pass from the request to the plugin
- description String
- Human-friendly description of the mount for the backend.
- disable
Automated BooleanRotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+.
- disable
Remount Boolean - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- external
Entropy BooleanAccess - Enable the secrets engine to access Vault's external entropy source
- force
No BooleanCache - If set to true, disables caching.
- iam
Endpoint String - Specifies a custom HTTP IAM endpoint to use.
- identity
Token StringAudience - The audience claim value. Requires Vault 1.16+.
- identity
Token StringKey - The key to use for signing identity tokens.
- identity
Token NumberTtl - The TTL of generated identity tokens in seconds. Requires Vault 1.16+.
- listing
Visibility String - Specifies whether to show this mount in the UI-specific listing endpoint
- local Boolean
- Specifies if the secret backend is local only
- max
Lease NumberTtl Seconds - Maximum possible lease duration for secrets in seconds
- 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. - options Map<String>
- Specifies mount type specific options that are passed to the backend
- passthrough
Request List<String>Headers - List of headers to allow and pass from the request to the plugin
- path String
- The unique path this backend should be mounted at. Must
not begin or end with a
/
. Defaults toaws
. - plugin
Version String - Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
- region String
- The AWS region to make API calls against. Defaults to us-east-1.
- role
Arn String - Role ARN to assume for plugin identity token federation. Requires Vault 1.16+.
- rotation
Period Number - The amount of time in seconds Vault should wait before rotating the root credential. A zero value tells Vault not to rotate the root credential. The minimum rotation period is 10 seconds. Requires Vault Enterprise 1.19+.
- rotation
Schedule String - The schedule, in cron-style time format, defining the schedule on which Vault should rotate the root token. Requires Vault Enterprise 1.19+.
- rotation
Window Number - The maximum amount of time in seconds allowed to complete
a rotation when a scheduled token rotation occurs. The default rotation window is
unbound and the minimum allowable window is
3600
. Requires Vault Enterprise 1.19+. - seal
Wrap Boolean - Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
- secret
Key String - The AWS Secret Access Key to use when generating new credentials.
- sts
Endpoint String - Specifies a custom HTTP STS endpoint to use.
- sts
Fallback List<String>Endpoints - Ordered list of
sts_endpoint
s to try if the defined one fails. Requires Vault 1.19+ - sts
Fallback List<String>Regions - Ordered list of
sts_region
s matching the fallback endpoints. Should correspond in order with those endpoints. Requires Vault 1.19+ - sts
Region String - Specifies the region of the STS endpoint. Should be included if
sts_endpoint
is supplied. Requires Vault 1.19+ - username
Template String - Template describing how dynamic usernames are generated. The username template is used to generate both IAM usernames (capped at 64 characters) and STS usernames (capped at 32 characters). If no template is provided the field defaults to the template:
{{ if (eq .Type "STS") }} {{ printf "vault-%s-%s" (unix_time) (random 20) | truncate 32 }} {{ else }} {{ printf "vault-%s-%s-%s" (printf "%s-%s" (.DisplayName) (.PolicyName) | truncate 42) (unix_time) (random 20) | truncate 64 }} {{ end }}
Package Details
- Repository
- Vault pulumi/pulumi-vault
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
vault
Terraform Provider.