vault.Provider
Explore with Pulumi AI
The provider type for the vault package. By default, resources use package-wide configuration
settings, however an explicit Provider
instance may be created and passed during resource
construction to achieve fine-grained programmatic control over provider settings. See the
documentation for more information.
Create Provider Resource
new Provider(name: string, args: ProviderArgs, opts?: CustomResourceOptions);
@overload
def Provider(resource_name: str,
opts: Optional[ResourceOptions] = None,
add_address_to_env: Optional[str] = None,
address: Optional[str] = None,
auth_login: Optional[ProviderAuthLoginArgs] = None,
auth_login_aws: Optional[ProviderAuthLoginAwsArgs] = None,
auth_login_azure: Optional[ProviderAuthLoginAzureArgs] = None,
auth_login_cert: Optional[ProviderAuthLoginCertArgs] = None,
auth_login_gcp: Optional[ProviderAuthLoginGcpArgs] = None,
auth_login_jwt: Optional[ProviderAuthLoginJwtArgs] = None,
auth_login_kerberos: Optional[ProviderAuthLoginKerberosArgs] = None,
auth_login_oci: Optional[ProviderAuthLoginOciArgs] = None,
auth_login_oidc: Optional[ProviderAuthLoginOidcArgs] = None,
auth_login_radius: Optional[ProviderAuthLoginRadiusArgs] = None,
auth_login_token_file: Optional[ProviderAuthLoginTokenFileArgs] = None,
auth_login_userpass: Optional[ProviderAuthLoginUserpassArgs] = None,
ca_cert_dir: Optional[str] = None,
ca_cert_file: Optional[str] = None,
client_auth: Optional[ProviderClientAuthArgs] = None,
headers: Optional[Sequence[ProviderHeaderArgs]] = None,
max_lease_ttl_seconds: Optional[int] = None,
max_retries: Optional[int] = None,
max_retries_ccc: Optional[int] = None,
namespace: Optional[str] = None,
set_namespace_from_token: Optional[bool] = None,
skip_child_token: Optional[bool] = None,
skip_get_vault_version: Optional[bool] = None,
skip_tls_verify: Optional[bool] = None,
tls_server_name: Optional[str] = None,
token: Optional[str] = None,
token_name: Optional[str] = None,
vault_version_override: Optional[str] = None)
@overload
def Provider(resource_name: str,
args: ProviderArgs,
opts: Optional[ResourceOptions] = None)
func NewProvider(ctx *Context, name string, args ProviderArgs, opts ...ResourceOption) (*Provider, error)
public Provider(string name, ProviderArgs args, CustomResourceOptions? opts = null)
public Provider(String name, ProviderArgs args)
public Provider(String name, ProviderArgs args, CustomResourceOptions options)
type: pulumi:providers:vault
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProviderArgs
- 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 ProviderArgs
- 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 ProviderArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProviderArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProviderArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Provider Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Provider resource accepts the following input properties:
- Address string
URL of the root of the target Vault server.
- Token string
Token to use to authenticate to Vault.
- Add
Address stringTo Env If true, adds the value of the
address
argument to the Terraform process environment.- Auth
Login ProviderAuth Login Login to vault with an existing auth method using auth//login
- Auth
Login ProviderAws Auth Login Aws Login to vault using the AWS method
- Auth
Login ProviderAzure Auth Login Azure Login to vault using the azure method
- Auth
Login ProviderCert Auth Login Cert Login to vault using the cert method
- Auth
Login ProviderGcp Auth Login Gcp Login to vault using the gcp method
- Auth
Login ProviderJwt Auth Login Jwt Login to vault using the jwt method
- Auth
Login ProviderKerberos Auth Login Kerberos Login to vault using the kerberos method
- Auth
Login ProviderOci Auth Login Oci Login to vault using the OCI method
- Auth
Login ProviderOidc Auth Login Oidc Login to vault using the oidc method
- Auth
Login ProviderRadius Auth Login Radius Login to vault using the radius method
- Auth
Login ProviderToken File Auth Login Token File Login to vault using
- Auth
Login ProviderUserpass Auth Login Userpass Login to vault using the userpass method
- Ca
Cert stringDir Path to directory containing CA certificate files to validate the server's certificate.
- Ca
Cert stringFile Path to a CA certificate file to validate the server's certificate.
- Client
Auth ProviderClient Auth Client authentication credentials.
Use auth_login_cert instead
- Headers
List<Provider
Header> The headers to send with each Vault request.
- Max
Lease intTtl Seconds Maximum TTL for secret leases requested by this provider. It can also be sourced from the following environment variable:
TERRAFORM_VAULT_MAX_TTL
- Max
Retries int Maximum number of retries when a 5xx error code is encountered. It can also be sourced from the following environment variable:
VAULT_MAX_RETRIES
- Max
Retries intCcc Maximum number of retries for Client Controlled Consistency related operations
- Namespace string
The namespace to use. Available only for Vault Enterprise.
- Set
Namespace boolFrom Token In the case where the Vault token is for a specific namespace and the provider namespace is not configured, use the token namespace as the root namespace for all resources.
- Skip
Child boolToken Set this to true to prevent the creation of ephemeral child token used by this provider.
- Skip
Get boolVault Version Skip the dynamic fetching of the Vault server version.
- Skip
Tls boolVerify Set this to true only if the target Vault server is an insecure development instance. It can also be sourced from the following environment variable:
VAULT_SKIP_VERIFY
- Tls
Server stringName Name to use as the SNI host when connecting via TLS.
- Token
Name string Token name to use for creating the Vault child token.
- Vault
Version stringOverride Override the Vault server version, which is normally determined dynamically from the target Vault server
- Address string
URL of the root of the target Vault server.
- Token string
Token to use to authenticate to Vault.
- Add
Address stringTo Env If true, adds the value of the
address
argument to the Terraform process environment.- Auth
Login ProviderAuth Login Args Login to vault with an existing auth method using auth//login
- Auth
Login ProviderAws Auth Login Aws Args Login to vault using the AWS method
- Auth
Login ProviderAzure Auth Login Azure Args Login to vault using the azure method
- Auth
Login ProviderCert Auth Login Cert Args Login to vault using the cert method
- Auth
Login ProviderGcp Auth Login Gcp Args Login to vault using the gcp method
- Auth
Login ProviderJwt Auth Login Jwt Args Login to vault using the jwt method
- Auth
Login ProviderKerberos Auth Login Kerberos Args Login to vault using the kerberos method
- Auth
Login ProviderOci Auth Login Oci Args Login to vault using the OCI method
- Auth
Login ProviderOidc Auth Login Oidc Args Login to vault using the oidc method
- Auth
Login ProviderRadius Auth Login Radius Args Login to vault using the radius method
- Auth
Login ProviderToken File Auth Login Token File Args Login to vault using
- Auth
Login ProviderUserpass Auth Login Userpass Args Login to vault using the userpass method
- Ca
Cert stringDir Path to directory containing CA certificate files to validate the server's certificate.
- Ca
Cert stringFile Path to a CA certificate file to validate the server's certificate.
- Client
Auth ProviderClient Auth Args Client authentication credentials.
Use auth_login_cert instead
- Headers
[]Provider
Header Args The headers to send with each Vault request.
- Max
Lease intTtl Seconds Maximum TTL for secret leases requested by this provider. It can also be sourced from the following environment variable:
TERRAFORM_VAULT_MAX_TTL
- Max
Retries int Maximum number of retries when a 5xx error code is encountered. It can also be sourced from the following environment variable:
VAULT_MAX_RETRIES
- Max
Retries intCcc Maximum number of retries for Client Controlled Consistency related operations
- Namespace string
The namespace to use. Available only for Vault Enterprise.
- Set
Namespace boolFrom Token In the case where the Vault token is for a specific namespace and the provider namespace is not configured, use the token namespace as the root namespace for all resources.
- Skip
Child boolToken Set this to true to prevent the creation of ephemeral child token used by this provider.
- Skip
Get boolVault Version Skip the dynamic fetching of the Vault server version.
- Skip
Tls boolVerify Set this to true only if the target Vault server is an insecure development instance. It can also be sourced from the following environment variable:
VAULT_SKIP_VERIFY
- Tls
Server stringName Name to use as the SNI host when connecting via TLS.
- Token
Name string Token name to use for creating the Vault child token.
- Vault
Version stringOverride Override the Vault server version, which is normally determined dynamically from the target Vault server
- address String
URL of the root of the target Vault server.
- token String
Token to use to authenticate to Vault.
- add
Address StringTo Env If true, adds the value of the
address
argument to the Terraform process environment.- auth
Login ProviderAuth Login Login to vault with an existing auth method using auth//login
- auth
Login ProviderAws Auth Login Aws Login to vault using the AWS method
- auth
Login ProviderAzure Auth Login Azure Login to vault using the azure method
- auth
Login ProviderCert Auth Login Cert Login to vault using the cert method
- auth
Login ProviderGcp Auth Login Gcp Login to vault using the gcp method
- auth
Login ProviderJwt Auth Login Jwt Login to vault using the jwt method
- auth
Login ProviderKerberos Auth Login Kerberos Login to vault using the kerberos method
- auth
Login ProviderOci Auth Login Oci Login to vault using the OCI method
- auth
Login ProviderOidc Auth Login Oidc Login to vault using the oidc method
- auth
Login ProviderRadius Auth Login Radius Login to vault using the radius method
- auth
Login ProviderToken File Auth Login Token File Login to vault using
- auth
Login ProviderUserpass Auth Login Userpass Login to vault using the userpass method
- ca
Cert StringDir Path to directory containing CA certificate files to validate the server's certificate.
- ca
Cert StringFile Path to a CA certificate file to validate the server's certificate.
- client
Auth ProviderClient Auth Client authentication credentials.
Use auth_login_cert instead
- headers
List<Provider
Header> The headers to send with each Vault request.
- max
Lease IntegerTtl Seconds Maximum TTL for secret leases requested by this provider. It can also be sourced from the following environment variable:
TERRAFORM_VAULT_MAX_TTL
- max
Retries Integer Maximum number of retries when a 5xx error code is encountered. It can also be sourced from the following environment variable:
VAULT_MAX_RETRIES
- max
Retries IntegerCcc Maximum number of retries for Client Controlled Consistency related operations
- namespace String
The namespace to use. Available only for Vault Enterprise.
- set
Namespace BooleanFrom Token In the case where the Vault token is for a specific namespace and the provider namespace is not configured, use the token namespace as the root namespace for all resources.
- skip
Child BooleanToken Set this to true to prevent the creation of ephemeral child token used by this provider.
- skip
Get BooleanVault Version Skip the dynamic fetching of the Vault server version.
- skip
Tls BooleanVerify Set this to true only if the target Vault server is an insecure development instance. It can also be sourced from the following environment variable:
VAULT_SKIP_VERIFY
- tls
Server StringName Name to use as the SNI host when connecting via TLS.
- token
Name String Token name to use for creating the Vault child token.
- vault
Version StringOverride Override the Vault server version, which is normally determined dynamically from the target Vault server
- address string
URL of the root of the target Vault server.
- token string
Token to use to authenticate to Vault.
- add
Address stringTo Env If true, adds the value of the
address
argument to the Terraform process environment.- auth
Login ProviderAuth Login Login to vault with an existing auth method using auth//login
- auth
Login ProviderAws Auth Login Aws Login to vault using the AWS method
- auth
Login ProviderAzure Auth Login Azure Login to vault using the azure method
- auth
Login ProviderCert Auth Login Cert Login to vault using the cert method
- auth
Login ProviderGcp Auth Login Gcp Login to vault using the gcp method
- auth
Login ProviderJwt Auth Login Jwt Login to vault using the jwt method
- auth
Login ProviderKerberos Auth Login Kerberos Login to vault using the kerberos method
- auth
Login ProviderOci Auth Login Oci Login to vault using the OCI method
- auth
Login ProviderOidc Auth Login Oidc Login to vault using the oidc method
- auth
Login ProviderRadius Auth Login Radius Login to vault using the radius method
- auth
Login ProviderToken File Auth Login Token File Login to vault using
- auth
Login ProviderUserpass Auth Login Userpass Login to vault using the userpass method
- ca
Cert stringDir Path to directory containing CA certificate files to validate the server's certificate.
- ca
Cert stringFile Path to a CA certificate file to validate the server's certificate.
- client
Auth ProviderClient Auth Client authentication credentials.
Use auth_login_cert instead
- headers
Provider
Header[] The headers to send with each Vault request.
- max
Lease numberTtl Seconds Maximum TTL for secret leases requested by this provider. It can also be sourced from the following environment variable:
TERRAFORM_VAULT_MAX_TTL
- max
Retries number Maximum number of retries when a 5xx error code is encountered. It can also be sourced from the following environment variable:
VAULT_MAX_RETRIES
- max
Retries numberCcc Maximum number of retries for Client Controlled Consistency related operations
- namespace string
The namespace to use. Available only for Vault Enterprise.
- set
Namespace booleanFrom Token In the case where the Vault token is for a specific namespace and the provider namespace is not configured, use the token namespace as the root namespace for all resources.
- skip
Child booleanToken Set this to true to prevent the creation of ephemeral child token used by this provider.
- skip
Get booleanVault Version Skip the dynamic fetching of the Vault server version.
- skip
Tls booleanVerify Set this to true only if the target Vault server is an insecure development instance. It can also be sourced from the following environment variable:
VAULT_SKIP_VERIFY
- tls
Server stringName Name to use as the SNI host when connecting via TLS.
- token
Name string Token name to use for creating the Vault child token.
- vault
Version stringOverride Override the Vault server version, which is normally determined dynamically from the target Vault server
- address str
URL of the root of the target Vault server.
- token str
Token to use to authenticate to Vault.
- add_
address_ strto_ env If true, adds the value of the
address
argument to the Terraform process environment.- auth_
login ProviderAuth Login Args Login to vault with an existing auth method using auth//login
- auth_
login_ Provideraws Auth Login Aws Args Login to vault using the AWS method
- auth_
login_ Providerazure Auth Login Azure Args Login to vault using the azure method
- auth_
login_ Providercert Auth Login Cert Args Login to vault using the cert method
- auth_
login_ Providergcp Auth Login Gcp Args Login to vault using the gcp method
- auth_
login_ Providerjwt Auth Login Jwt Args Login to vault using the jwt method
- auth_
login_ Providerkerberos Auth Login Kerberos Args Login to vault using the kerberos method
- auth_
login_ Provideroci Auth Login Oci Args Login to vault using the OCI method
- auth_
login_ Provideroidc Auth Login Oidc Args Login to vault using the oidc method
- auth_
login_ Providerradius Auth Login Radius Args Login to vault using the radius method
- auth_
login_ Providertoken_ file Auth Login Token File Args Login to vault using
- auth_
login_ Provideruserpass Auth Login Userpass Args Login to vault using the userpass method
- ca_
cert_ strdir Path to directory containing CA certificate files to validate the server's certificate.
- ca_
cert_ strfile Path to a CA certificate file to validate the server's certificate.
- client_
auth ProviderClient Auth Args Client authentication credentials.
Use auth_login_cert instead
- headers
Sequence[Provider
Header Args] The headers to send with each Vault request.
- max_
lease_ intttl_ seconds Maximum TTL for secret leases requested by this provider. It can also be sourced from the following environment variable:
TERRAFORM_VAULT_MAX_TTL
- max_
retries int Maximum number of retries when a 5xx error code is encountered. It can also be sourced from the following environment variable:
VAULT_MAX_RETRIES
- max_
retries_ intccc Maximum number of retries for Client Controlled Consistency related operations
- namespace str
The namespace to use. Available only for Vault Enterprise.
- set_
namespace_ boolfrom_ token In the case where the Vault token is for a specific namespace and the provider namespace is not configured, use the token namespace as the root namespace for all resources.
- skip_
child_ booltoken Set this to true to prevent the creation of ephemeral child token used by this provider.
- skip_
get_ boolvault_ version Skip the dynamic fetching of the Vault server version.
- skip_
tls_ boolverify Set this to true only if the target Vault server is an insecure development instance. It can also be sourced from the following environment variable:
VAULT_SKIP_VERIFY
- tls_
server_ strname Name to use as the SNI host when connecting via TLS.
- token_
name str Token name to use for creating the Vault child token.
- vault_
version_ stroverride Override the Vault server version, which is normally determined dynamically from the target Vault server
- address String
URL of the root of the target Vault server.
- token String
Token to use to authenticate to Vault.
- add
Address StringTo Env If true, adds the value of the
address
argument to the Terraform process environment.- auth
Login Property Map Login to vault with an existing auth method using auth//login
- auth
Login Property MapAws Login to vault using the AWS method
- auth
Login Property MapAzure Login to vault using the azure method
- auth
Login Property MapCert Login to vault using the cert method
- auth
Login Property MapGcp Login to vault using the gcp method
- auth
Login Property MapJwt Login to vault using the jwt method
- auth
Login Property MapKerberos Login to vault using the kerberos method
- auth
Login Property MapOci Login to vault using the OCI method
- auth
Login Property MapOidc Login to vault using the oidc method
- auth
Login Property MapRadius Login to vault using the radius method
- auth
Login Property MapToken File Login to vault using
- auth
Login Property MapUserpass Login to vault using the userpass method
- ca
Cert StringDir Path to directory containing CA certificate files to validate the server's certificate.
- ca
Cert StringFile Path to a CA certificate file to validate the server's certificate.
- client
Auth Property Map Client authentication credentials.
Use auth_login_cert instead
- headers List<Property Map>
The headers to send with each Vault request.
- max
Lease NumberTtl Seconds Maximum TTL for secret leases requested by this provider. It can also be sourced from the following environment variable:
TERRAFORM_VAULT_MAX_TTL
- max
Retries Number Maximum number of retries when a 5xx error code is encountered. It can also be sourced from the following environment variable:
VAULT_MAX_RETRIES
- max
Retries NumberCcc Maximum number of retries for Client Controlled Consistency related operations
- namespace String
The namespace to use. Available only for Vault Enterprise.
- set
Namespace BooleanFrom Token In the case where the Vault token is for a specific namespace and the provider namespace is not configured, use the token namespace as the root namespace for all resources.
- skip
Child BooleanToken Set this to true to prevent the creation of ephemeral child token used by this provider.
- skip
Get BooleanVault Version Skip the dynamic fetching of the Vault server version.
- skip
Tls BooleanVerify Set this to true only if the target Vault server is an insecure development instance. It can also be sourced from the following environment variable:
VAULT_SKIP_VERIFY
- tls
Server StringName Name to use as the SNI host when connecting via TLS.
- token
Name String Token name to use for creating the Vault child token.
- vault
Version StringOverride Override the Vault server version, which is normally determined dynamically from the target Vault server
Outputs
All input properties are implicitly available as output properties. Additionally, the Provider resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Id string
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
- id string
The provider-assigned unique ID for this managed resource.
- id str
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
Supporting Types
ProviderAuthLogin, ProviderAuthLoginArgs
- Path string
- Method string
- Namespace string
- Parameters Dictionary<string, string>
- Use
Root boolNamespace
- Path string
- Method string
- Namespace string
- Parameters map[string]string
- Use
Root boolNamespace
- path String
- method String
- namespace String
- parameters Map<String,String>
- use
Root BooleanNamespace
- path string
- method string
- namespace string
- parameters {[key: string]: string}
- use
Root booleanNamespace
- path str
- method str
- namespace str
- parameters Mapping[str, str]
- use_
root_ boolnamespace
- path String
- method String
- namespace String
- parameters Map<String>
- use
Root BooleanNamespace
ProviderAuthLoginAws, ProviderAuthLoginAwsArgs
- Role string
- Aws
Access stringKey Id - Aws
Iam stringEndpoint - Aws
Profile string - Aws
Region string - Aws
Role stringArn - Aws
Role stringSession Name - Aws
Secret stringAccess Key - Aws
Session stringToken - string
- Aws
Sts stringEndpoint - Aws
Web stringIdentity Token File - Header
Value string - Mount string
- Namespace string
- Use
Root boolNamespace
- Role string
- Aws
Access stringKey Id - Aws
Iam stringEndpoint - Aws
Profile string - Aws
Region string - Aws
Role stringArn - Aws
Role stringSession Name - Aws
Secret stringAccess Key - Aws
Session stringToken - string
- Aws
Sts stringEndpoint - Aws
Web stringIdentity Token File - Header
Value string - Mount string
- Namespace string
- Use
Root boolNamespace
- role String
- aws
Access StringKey Id - aws
Iam StringEndpoint - aws
Profile String - aws
Region String - aws
Role StringArn - aws
Role StringSession Name - aws
Secret StringAccess Key - aws
Session StringToken - String
- aws
Sts StringEndpoint - aws
Web StringIdentity Token File - header
Value String - mount String
- namespace String
- use
Root BooleanNamespace
- role string
- aws
Access stringKey Id - aws
Iam stringEndpoint - aws
Profile string - aws
Region string - aws
Role stringArn - aws
Role stringSession Name - aws
Secret stringAccess Key - aws
Session stringToken - string
- aws
Sts stringEndpoint - aws
Web stringIdentity Token File - header
Value string - mount string
- namespace string
- use
Root booleanNamespace
- role str
- aws_
access_ strkey_ id - aws_
iam_ strendpoint - aws_
profile str - aws_
region str - aws_
role_ strarn - aws_
role_ strsession_ name - aws_
secret_ straccess_ key - aws_
session_ strtoken - str
- aws_
sts_ strendpoint - aws_
web_ stridentity_ token_ file - header_
value str - mount str
- namespace str
- use_
root_ boolnamespace
- role String
- aws
Access StringKey Id - aws
Iam StringEndpoint - aws
Profile String - aws
Region String - aws
Role StringArn - aws
Role StringSession Name - aws
Secret StringAccess Key - aws
Session StringToken - String
- aws
Sts StringEndpoint - aws
Web StringIdentity Token File - header
Value String - mount String
- namespace String
- use
Root BooleanNamespace
ProviderAuthLoginAzure, ProviderAuthLoginAzureArgs
- Resource
Group stringName - Role string
- Subscription
Id string - Client
Id string - Jwt string
- Mount string
- Namespace string
- Scope string
- Tenant
Id string - Use
Root boolNamespace - Vm
Name string - Vmss
Name string
- Resource
Group stringName - Role string
- Subscription
Id string - Client
Id string - Jwt string
- Mount string
- Namespace string
- Scope string
- Tenant
Id string - Use
Root boolNamespace - Vm
Name string - Vmss
Name string
- resource
Group StringName - role String
- subscription
Id String - client
Id String - jwt String
- mount String
- namespace String
- scope String
- tenant
Id String - use
Root BooleanNamespace - vm
Name String - vmss
Name String
- resource
Group stringName - role string
- subscription
Id string - client
Id string - jwt string
- mount string
- namespace string
- scope string
- tenant
Id string - use
Root booleanNamespace - vm
Name string - vmss
Name string
- resource_
group_ strname - role str
- subscription_
id str - client_
id str - jwt str
- mount str
- namespace str
- scope str
- tenant_
id str - use_
root_ boolnamespace - vm_
name str - vmss_
name str
- resource
Group StringName - role String
- subscription
Id String - client
Id String - jwt String
- mount String
- namespace String
- scope String
- tenant
Id String - use
Root BooleanNamespace - vm
Name String - vmss
Name String
ProviderAuthLoginCert, ProviderAuthLoginCertArgs
ProviderAuthLoginGcp, ProviderAuthLoginGcpArgs
- Role string
- Credentials string
- Jwt string
- Mount string
- Namespace string
- Service
Account string - Use
Root boolNamespace
- Role string
- Credentials string
- Jwt string
- Mount string
- Namespace string
- Service
Account string - Use
Root boolNamespace
- role String
- credentials String
- jwt String
- mount String
- namespace String
- service
Account String - use
Root BooleanNamespace
- role string
- credentials string
- jwt string
- mount string
- namespace string
- service
Account string - use
Root booleanNamespace
- role str
- credentials str
- jwt str
- mount str
- namespace str
- service_
account str - use_
root_ boolnamespace
- role String
- credentials String
- jwt String
- mount String
- namespace String
- service
Account String - use
Root BooleanNamespace
ProviderAuthLoginJwt, ProviderAuthLoginJwtArgs
- Jwt string
- Role string
- Mount string
- Namespace string
- Use
Root boolNamespace
- Jwt string
- Role string
- Mount string
- Namespace string
- Use
Root boolNamespace
- jwt String
- role String
- mount String
- namespace String
- use
Root BooleanNamespace
- jwt string
- role string
- mount string
- namespace string
- use
Root booleanNamespace
- jwt str
- role str
- mount str
- namespace str
- use_
root_ boolnamespace
- jwt String
- role String
- mount String
- namespace String
- use
Root BooleanNamespace
ProviderAuthLoginKerberos, ProviderAuthLoginKerberosArgs
- Disable
Fast boolNegotiation - Keytab
Path string - Krb5conf
Path string - Mount string
- Namespace string
- Realm string
- Remove
Instance boolName - Service string
- Token string
- Use
Root boolNamespace - Username string
- Disable
Fast boolNegotiation - Keytab
Path string - Krb5conf
Path string - Mount string
- Namespace string
- Realm string
- Remove
Instance boolName - Service string
- Token string
- Use
Root boolNamespace - Username string
- disable
Fast BooleanNegotiation - keytab
Path String - krb5conf
Path String - mount String
- namespace String
- realm String
- remove
Instance BooleanName - service String
- token String
- use
Root BooleanNamespace - username String
- disable
Fast booleanNegotiation - keytab
Path string - krb5conf
Path string - mount string
- namespace string
- realm string
- remove
Instance booleanName - service string
- token string
- use
Root booleanNamespace - username string
- disable_
fast_ boolnegotiation - keytab_
path str - krb5conf_
path str - mount str
- namespace str
- realm str
- remove_
instance_ boolname - service str
- token str
- use_
root_ boolnamespace - username str
- disable
Fast BooleanNegotiation - keytab
Path String - krb5conf
Path String - mount String
- namespace String
- realm String
- remove
Instance BooleanName - service String
- token String
- use
Root BooleanNamespace - username String
ProviderAuthLoginOci, ProviderAuthLoginOciArgs
- Auth
Type string - Role string
- Mount string
- Namespace string
- Use
Root boolNamespace
- Auth
Type string - Role string
- Mount string
- Namespace string
- Use
Root boolNamespace
- auth
Type String - role String
- mount String
- namespace String
- use
Root BooleanNamespace
- auth
Type string - role string
- mount string
- namespace string
- use
Root booleanNamespace
- auth_
type str - role str
- mount str
- namespace str
- use_
root_ boolnamespace
- auth
Type String - role String
- mount String
- namespace String
- use
Root BooleanNamespace
ProviderAuthLoginOidc, ProviderAuthLoginOidcArgs
- Role string
- Callback
Address string - Callback
Listener stringAddress - Mount string
- Namespace string
- Use
Root boolNamespace
- Role string
- Callback
Address string - Callback
Listener stringAddress - Mount string
- Namespace string
- Use
Root boolNamespace
- role String
- callback
Address String - callback
Listener StringAddress - mount String
- namespace String
- use
Root BooleanNamespace
- role string
- callback
Address string - callback
Listener stringAddress - mount string
- namespace string
- use
Root booleanNamespace
- role str
- callback_
address str - callback_
listener_ straddress - mount str
- namespace str
- use_
root_ boolnamespace
- role String
- callback
Address String - callback
Listener StringAddress - mount String
- namespace String
- use
Root BooleanNamespace
ProviderAuthLoginRadius, ProviderAuthLoginRadiusArgs
- Password string
- Username string
- Mount string
- Namespace string
- Use
Root boolNamespace
- Password string
- Username string
- Mount string
- Namespace string
- Use
Root boolNamespace
- password String
- username String
- mount String
- namespace String
- use
Root BooleanNamespace
- password string
- username string
- mount string
- namespace string
- use
Root booleanNamespace
- password str
- username str
- mount str
- namespace str
- use_
root_ boolnamespace
- password String
- username String
- mount String
- namespace String
- use
Root BooleanNamespace
ProviderAuthLoginTokenFile, ProviderAuthLoginTokenFileArgs
- Filename string
- Namespace string
- Use
Root boolNamespace
- Filename string
- Namespace string
- Use
Root boolNamespace
- filename String
- namespace String
- use
Root BooleanNamespace
- filename string
- namespace string
- use
Root booleanNamespace
- filename str
- namespace str
- use_
root_ boolnamespace
- filename String
- namespace String
- use
Root BooleanNamespace
ProviderAuthLoginUserpass, ProviderAuthLoginUserpassArgs
- Username string
- Mount string
- Namespace string
- Password string
- Password
File string - Use
Root boolNamespace
- Username string
- Mount string
- Namespace string
- Password string
- Password
File string - Use
Root boolNamespace
- username String
- mount String
- namespace String
- password String
- password
File String - use
Root BooleanNamespace
- username string
- mount string
- namespace string
- password string
- password
File string - use
Root booleanNamespace
- username str
- mount str
- namespace str
- password str
- password_
file str - use_
root_ boolnamespace
- username String
- mount String
- namespace String
- password String
- password
File String - use
Root BooleanNamespace
ProviderClientAuth, ProviderClientAuthArgs
ProviderHeader, ProviderHeaderArgs
Package Details
- Repository
- Vault pulumi/pulumi-vault
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
vault
Terraform Provider.