published on Friday, Feb 6, 2026 by Pulumi
published on Friday, Feb 6, 2026 by Pulumi
Import
Azure auth backends can be imported using auth/, the backend path, and /config e.g.
$ pulumi import vault:azure/authBackendConfig:AuthBackendConfig example auth/azure/config
Create AuthBackendConfig Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AuthBackendConfig(name: string, args: AuthBackendConfigArgs, opts?: CustomResourceOptions);@overload
def AuthBackendConfig(resource_name: str,
args: AuthBackendConfigArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AuthBackendConfig(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource: Optional[str] = None,
tenant_id: Optional[str] = None,
client_secret_wo_version: Optional[int] = None,
max_retries: Optional[int] = None,
backend: Optional[str] = None,
disable_automated_rotation: Optional[bool] = None,
environment: Optional[str] = None,
identity_token_audience: Optional[str] = None,
identity_token_ttl: Optional[int] = None,
client_secret_wo: Optional[str] = None,
max_retry_delay: Optional[int] = None,
namespace: Optional[str] = None,
client_secret: Optional[str] = None,
retry_delay: Optional[int] = None,
rotation_period: Optional[int] = None,
rotation_schedule: Optional[str] = None,
rotation_window: Optional[int] = None,
client_id: Optional[str] = None)func NewAuthBackendConfig(ctx *Context, name string, args AuthBackendConfigArgs, opts ...ResourceOption) (*AuthBackendConfig, error)public AuthBackendConfig(string name, AuthBackendConfigArgs args, CustomResourceOptions? opts = null)
public AuthBackendConfig(String name, AuthBackendConfigArgs args)
public AuthBackendConfig(String name, AuthBackendConfigArgs args, CustomResourceOptions options)
type: vault:azure:AuthBackendConfig
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 AuthBackendConfigArgs
- 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 AuthBackendConfigArgs
- 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 AuthBackendConfigArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuthBackendConfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AuthBackendConfigArgs
- 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 authBackendConfigResource = new Vault.Azure.AuthBackendConfig("authBackendConfigResource", new()
{
Resource = "string",
TenantId = "string",
ClientSecretWoVersion = 0,
MaxRetries = 0,
Backend = "string",
DisableAutomatedRotation = false,
Environment = "string",
IdentityTokenAudience = "string",
IdentityTokenTtl = 0,
ClientSecretWo = "string",
MaxRetryDelay = 0,
Namespace = "string",
ClientSecret = "string",
RetryDelay = 0,
RotationPeriod = 0,
RotationSchedule = "string",
RotationWindow = 0,
ClientId = "string",
});
example, err := azure.NewAuthBackendConfig(ctx, "authBackendConfigResource", &azure.AuthBackendConfigArgs{
Resource: pulumi.String("string"),
TenantId: pulumi.String("string"),
ClientSecretWoVersion: pulumi.Int(0),
MaxRetries: pulumi.Int(0),
Backend: pulumi.String("string"),
DisableAutomatedRotation: pulumi.Bool(false),
Environment: pulumi.String("string"),
IdentityTokenAudience: pulumi.String("string"),
IdentityTokenTtl: pulumi.Int(0),
ClientSecretWo: pulumi.String("string"),
MaxRetryDelay: pulumi.Int(0),
Namespace: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
RetryDelay: pulumi.Int(0),
RotationPeriod: pulumi.Int(0),
RotationSchedule: pulumi.String("string"),
RotationWindow: pulumi.Int(0),
ClientId: pulumi.String("string"),
})
var authBackendConfigResource = new com.pulumi.vault.azure.AuthBackendConfig("authBackendConfigResource", com.pulumi.vault.azure.AuthBackendConfigArgs.builder()
.resource("string")
.tenantId("string")
.clientSecretWoVersion(0)
.maxRetries(0)
.backend("string")
.disableAutomatedRotation(false)
.environment("string")
.identityTokenAudience("string")
.identityTokenTtl(0)
.clientSecretWo("string")
.maxRetryDelay(0)
.namespace("string")
.clientSecret("string")
.retryDelay(0)
.rotationPeriod(0)
.rotationSchedule("string")
.rotationWindow(0)
.clientId("string")
.build());
auth_backend_config_resource = vault.azure.AuthBackendConfig("authBackendConfigResource",
resource="string",
tenant_id="string",
client_secret_wo_version=0,
max_retries=0,
backend="string",
disable_automated_rotation=False,
environment="string",
identity_token_audience="string",
identity_token_ttl=0,
client_secret_wo="string",
max_retry_delay=0,
namespace="string",
client_secret="string",
retry_delay=0,
rotation_period=0,
rotation_schedule="string",
rotation_window=0,
client_id="string")
const authBackendConfigResource = new vault.azure.AuthBackendConfig("authBackendConfigResource", {
resource: "string",
tenantId: "string",
clientSecretWoVersion: 0,
maxRetries: 0,
backend: "string",
disableAutomatedRotation: false,
environment: "string",
identityTokenAudience: "string",
identityTokenTtl: 0,
clientSecretWo: "string",
maxRetryDelay: 0,
namespace: "string",
clientSecret: "string",
retryDelay: 0,
rotationPeriod: 0,
rotationSchedule: "string",
rotationWindow: 0,
clientId: "string",
});
type: vault:azure:AuthBackendConfig
properties:
backend: string
clientId: string
clientSecret: string
clientSecretWo: string
clientSecretWoVersion: 0
disableAutomatedRotation: false
environment: string
identityTokenAudience: string
identityTokenTtl: 0
maxRetries: 0
maxRetryDelay: 0
namespace: string
resource: string
retryDelay: 0
rotationPeriod: 0
rotationSchedule: string
rotationWindow: 0
tenantId: string
AuthBackendConfig 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 AuthBackendConfig resource accepts the following input properties:
- Resource string
- The configured URL for the application registered in Azure Active Directory.
- Tenant
Id string - The tenant id for the Azure Active Directory organization.
- Backend string
- The path the Azure auth backend being configured was
mounted at. Defaults to
azure. - Client
Id string - The client id for credentials to query the Azure APIs. Currently read permissions to query compute resources are required.
- Client
Secret string - The client secret for credentials to query the Azure APIs. Mutually exclusive with 'client_secret_wo'.
- Client
Secret stringWo - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The client secret for credentials to query the Azure APIs. This field is write-only and will never be stored in state. Mutually exclusive with 'client_secret'. Requires 'client_secret_wo_version' to trigger updates.
- Client
Secret intWo Version - Version counter for the write-only client secret.
Increment this value to trigger an update of the client secret in Vault.
Required when using
client_secret_wo. - Disable
Automated boolRotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+. Available only for Vault Enterprise
- Environment string
- The Azure cloud environment. Valid values:
AzurePublicCloud, AzureUSGovernmentCloud, AzureChinaCloud,
AzureGermanCloud. Defaults to
AzurePublicCloud. - Identity
Token stringAudience - The audience claim value for plugin identity tokens. Requires Vault 1.17+. Available only for Vault Enterprise
- Identity
Token intTtl - The TTL of generated identity tokens in seconds.
- Max
Retries int - Maximum number of retries for Azure API requests.
Defaults to
3. - Max
Retry intDelay - The maximum delay in seconds between retries for Azure API requests.
Defaults to
60. - Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise. - Retry
Delay int - The initial delay in seconds between retries for Azure API requests.
Defaults to
4. - 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise
- Resource string
- The configured URL for the application registered in Azure Active Directory.
- Tenant
Id string - The tenant id for the Azure Active Directory organization.
- Backend string
- The path the Azure auth backend being configured was
mounted at. Defaults to
azure. - Client
Id string - The client id for credentials to query the Azure APIs. Currently read permissions to query compute resources are required.
- Client
Secret string - The client secret for credentials to query the Azure APIs. Mutually exclusive with 'client_secret_wo'.
- Client
Secret stringWo - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The client secret for credentials to query the Azure APIs. This field is write-only and will never be stored in state. Mutually exclusive with 'client_secret'. Requires 'client_secret_wo_version' to trigger updates.
- Client
Secret intWo Version - Version counter for the write-only client secret.
Increment this value to trigger an update of the client secret in Vault.
Required when using
client_secret_wo. - Disable
Automated boolRotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+. Available only for Vault Enterprise
- Environment string
- The Azure cloud environment. Valid values:
AzurePublicCloud, AzureUSGovernmentCloud, AzureChinaCloud,
AzureGermanCloud. Defaults to
AzurePublicCloud. - Identity
Token stringAudience - The audience claim value for plugin identity tokens. Requires Vault 1.17+. Available only for Vault Enterprise
- Identity
Token intTtl - The TTL of generated identity tokens in seconds.
- Max
Retries int - Maximum number of retries for Azure API requests.
Defaults to
3. - Max
Retry intDelay - The maximum delay in seconds between retries for Azure API requests.
Defaults to
60. - Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise. - Retry
Delay int - The initial delay in seconds between retries for Azure API requests.
Defaults to
4. - 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise
- resource String
- The configured URL for the application registered in Azure Active Directory.
- tenant
Id String - The tenant id for the Azure Active Directory organization.
- backend String
- The path the Azure auth backend being configured was
mounted at. Defaults to
azure. - client
Id String - The client id for credentials to query the Azure APIs. Currently read permissions to query compute resources are required.
- client
Secret String - The client secret for credentials to query the Azure APIs. Mutually exclusive with 'client_secret_wo'.
- client
Secret StringWo - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The client secret for credentials to query the Azure APIs. This field is write-only and will never be stored in state. Mutually exclusive with 'client_secret'. Requires 'client_secret_wo_version' to trigger updates.
- client
Secret IntegerWo Version - Version counter for the write-only client secret.
Increment this value to trigger an update of the client secret in Vault.
Required when using
client_secret_wo. - disable
Automated BooleanRotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+. Available only for Vault Enterprise
- environment String
- The Azure cloud environment. Valid values:
AzurePublicCloud, AzureUSGovernmentCloud, AzureChinaCloud,
AzureGermanCloud. Defaults to
AzurePublicCloud. - identity
Token StringAudience - The audience claim value for plugin identity tokens. Requires Vault 1.17+. Available only for Vault Enterprise
- identity
Token IntegerTtl - The TTL of generated identity tokens in seconds.
- max
Retries Integer - Maximum number of retries for Azure API requests.
Defaults to
3. - max
Retry IntegerDelay - The maximum delay in seconds between retries for Azure API requests.
Defaults to
60. - namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise. - retry
Delay Integer - The initial delay in seconds between retries for Azure API requests.
Defaults to
4. - 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise
- resource string
- The configured URL for the application registered in Azure Active Directory.
- tenant
Id string - The tenant id for the Azure Active Directory organization.
- backend string
- The path the Azure auth backend being configured was
mounted at. Defaults to
azure. - client
Id string - The client id for credentials to query the Azure APIs. Currently read permissions to query compute resources are required.
- client
Secret string - The client secret for credentials to query the Azure APIs. Mutually exclusive with 'client_secret_wo'.
- client
Secret stringWo - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The client secret for credentials to query the Azure APIs. This field is write-only and will never be stored in state. Mutually exclusive with 'client_secret'. Requires 'client_secret_wo_version' to trigger updates.
- client
Secret numberWo Version - Version counter for the write-only client secret.
Increment this value to trigger an update of the client secret in Vault.
Required when using
client_secret_wo. - disable
Automated booleanRotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+. Available only for Vault Enterprise
- environment string
- The Azure cloud environment. Valid values:
AzurePublicCloud, AzureUSGovernmentCloud, AzureChinaCloud,
AzureGermanCloud. Defaults to
AzurePublicCloud. - identity
Token stringAudience - The audience claim value for plugin identity tokens. Requires Vault 1.17+. Available only for Vault Enterprise
- identity
Token numberTtl - The TTL of generated identity tokens in seconds.
- max
Retries number - Maximum number of retries for Azure API requests.
Defaults to
3. - max
Retry numberDelay - The maximum delay in seconds between retries for Azure API requests.
Defaults to
60. - namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise. - retry
Delay number - The initial delay in seconds between retries for Azure API requests.
Defaults to
4. - 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise
- resource str
- The configured URL for the application registered in Azure Active Directory.
- tenant_
id str - The tenant id for the Azure Active Directory organization.
- backend str
- The path the Azure auth backend being configured was
mounted at. Defaults to
azure. - client_
id str - The client id for credentials to query the Azure APIs. Currently read permissions to query compute resources are required.
- client_
secret str - The client secret for credentials to query the Azure APIs. Mutually exclusive with 'client_secret_wo'.
- client_
secret_ strwo - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The client secret for credentials to query the Azure APIs. This field is write-only and will never be stored in state. Mutually exclusive with 'client_secret'. Requires 'client_secret_wo_version' to trigger updates.
- client_
secret_ intwo_ version - Version counter for the write-only client secret.
Increment this value to trigger an update of the client secret in Vault.
Required when using
client_secret_wo. - disable_
automated_ boolrotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+. Available only for Vault Enterprise
- environment str
- The Azure cloud environment. Valid values:
AzurePublicCloud, AzureUSGovernmentCloud, AzureChinaCloud,
AzureGermanCloud. Defaults to
AzurePublicCloud. - identity_
token_ straudience - The audience claim value for plugin identity tokens. Requires Vault 1.17+. Available only for Vault Enterprise
- identity_
token_ intttl - The TTL of generated identity tokens in seconds.
- max_
retries int - Maximum number of retries for Azure API requests.
Defaults to
3. - max_
retry_ intdelay - The maximum delay in seconds between retries for Azure API requests.
Defaults to
60. - namespace str
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise. - retry_
delay int - The initial delay in seconds between retries for Azure API requests.
Defaults to
4. - 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise
- resource String
- The configured URL for the application registered in Azure Active Directory.
- tenant
Id String - The tenant id for the Azure Active Directory organization.
- backend String
- The path the Azure auth backend being configured was
mounted at. Defaults to
azure. - client
Id String - The client id for credentials to query the Azure APIs. Currently read permissions to query compute resources are required.
- client
Secret String - The client secret for credentials to query the Azure APIs. Mutually exclusive with 'client_secret_wo'.
- client
Secret StringWo - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The client secret for credentials to query the Azure APIs. This field is write-only and will never be stored in state. Mutually exclusive with 'client_secret'. Requires 'client_secret_wo_version' to trigger updates.
- client
Secret NumberWo Version - Version counter for the write-only client secret.
Increment this value to trigger an update of the client secret in Vault.
Required when using
client_secret_wo. - disable
Automated BooleanRotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+. Available only for Vault Enterprise
- environment String
- The Azure cloud environment. Valid values:
AzurePublicCloud, AzureUSGovernmentCloud, AzureChinaCloud,
AzureGermanCloud. Defaults to
AzurePublicCloud. - identity
Token StringAudience - The audience claim value for plugin identity tokens. Requires Vault 1.17+. Available only for Vault Enterprise
- identity
Token NumberTtl - The TTL of generated identity tokens in seconds.
- max
Retries Number - Maximum number of retries for Azure API requests.
Defaults to
3. - max
Retry NumberDelay - The maximum delay in seconds between retries for Azure API requests.
Defaults to
60. - namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise. - retry
Delay Number - The initial delay in seconds between retries for Azure API requests.
Defaults to
4. - 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise
Outputs
All input properties are implicitly available as output properties. Additionally, the AuthBackendConfig resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing AuthBackendConfig Resource
Get an existing AuthBackendConfig 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?: AuthBackendConfigState, opts?: CustomResourceOptions): AuthBackendConfig@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
backend: Optional[str] = None,
client_id: Optional[str] = None,
client_secret: Optional[str] = None,
client_secret_wo: Optional[str] = None,
client_secret_wo_version: Optional[int] = None,
disable_automated_rotation: Optional[bool] = None,
environment: Optional[str] = None,
identity_token_audience: Optional[str] = None,
identity_token_ttl: Optional[int] = None,
max_retries: Optional[int] = None,
max_retry_delay: Optional[int] = None,
namespace: Optional[str] = None,
resource: Optional[str] = None,
retry_delay: Optional[int] = None,
rotation_period: Optional[int] = None,
rotation_schedule: Optional[str] = None,
rotation_window: Optional[int] = None,
tenant_id: Optional[str] = None) -> AuthBackendConfigfunc GetAuthBackendConfig(ctx *Context, name string, id IDInput, state *AuthBackendConfigState, opts ...ResourceOption) (*AuthBackendConfig, error)public static AuthBackendConfig Get(string name, Input<string> id, AuthBackendConfigState? state, CustomResourceOptions? opts = null)public static AuthBackendConfig get(String name, Output<String> id, AuthBackendConfigState state, CustomResourceOptions options)resources: _: type: vault:azure:AuthBackendConfig 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.
- Backend string
- The path the Azure auth backend being configured was
mounted at. Defaults to
azure. - Client
Id string - The client id for credentials to query the Azure APIs. Currently read permissions to query compute resources are required.
- Client
Secret string - The client secret for credentials to query the Azure APIs. Mutually exclusive with 'client_secret_wo'.
- Client
Secret stringWo - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The client secret for credentials to query the Azure APIs. This field is write-only and will never be stored in state. Mutually exclusive with 'client_secret'. Requires 'client_secret_wo_version' to trigger updates.
- Client
Secret intWo Version - Version counter for the write-only client secret.
Increment this value to trigger an update of the client secret in Vault.
Required when using
client_secret_wo. - Disable
Automated boolRotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+. Available only for Vault Enterprise
- Environment string
- The Azure cloud environment. Valid values:
AzurePublicCloud, AzureUSGovernmentCloud, AzureChinaCloud,
AzureGermanCloud. Defaults to
AzurePublicCloud. - Identity
Token stringAudience - The audience claim value for plugin identity tokens. Requires Vault 1.17+. Available only for Vault Enterprise
- Identity
Token intTtl - The TTL of generated identity tokens in seconds.
- Max
Retries int - Maximum number of retries for Azure API requests.
Defaults to
3. - Max
Retry intDelay - The maximum delay in seconds between retries for Azure API requests.
Defaults to
60. - Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise. - Resource string
- The configured URL for the application registered in Azure Active Directory.
- Retry
Delay int - The initial delay in seconds between retries for Azure API requests.
Defaults to
4. - 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise - Tenant
Id string - The tenant id for the Azure Active Directory organization.
- Backend string
- The path the Azure auth backend being configured was
mounted at. Defaults to
azure. - Client
Id string - The client id for credentials to query the Azure APIs. Currently read permissions to query compute resources are required.
- Client
Secret string - The client secret for credentials to query the Azure APIs. Mutually exclusive with 'client_secret_wo'.
- Client
Secret stringWo - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The client secret for credentials to query the Azure APIs. This field is write-only and will never be stored in state. Mutually exclusive with 'client_secret'. Requires 'client_secret_wo_version' to trigger updates.
- Client
Secret intWo Version - Version counter for the write-only client secret.
Increment this value to trigger an update of the client secret in Vault.
Required when using
client_secret_wo. - Disable
Automated boolRotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+. Available only for Vault Enterprise
- Environment string
- The Azure cloud environment. Valid values:
AzurePublicCloud, AzureUSGovernmentCloud, AzureChinaCloud,
AzureGermanCloud. Defaults to
AzurePublicCloud. - Identity
Token stringAudience - The audience claim value for plugin identity tokens. Requires Vault 1.17+. Available only for Vault Enterprise
- Identity
Token intTtl - The TTL of generated identity tokens in seconds.
- Max
Retries int - Maximum number of retries for Azure API requests.
Defaults to
3. - Max
Retry intDelay - The maximum delay in seconds between retries for Azure API requests.
Defaults to
60. - Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise. - Resource string
- The configured URL for the application registered in Azure Active Directory.
- Retry
Delay int - The initial delay in seconds between retries for Azure API requests.
Defaults to
4. - 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise - Tenant
Id string - The tenant id for the Azure Active Directory organization.
- backend String
- The path the Azure auth backend being configured was
mounted at. Defaults to
azure. - client
Id String - The client id for credentials to query the Azure APIs. Currently read permissions to query compute resources are required.
- client
Secret String - The client secret for credentials to query the Azure APIs. Mutually exclusive with 'client_secret_wo'.
- client
Secret StringWo - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The client secret for credentials to query the Azure APIs. This field is write-only and will never be stored in state. Mutually exclusive with 'client_secret'. Requires 'client_secret_wo_version' to trigger updates.
- client
Secret IntegerWo Version - Version counter for the write-only client secret.
Increment this value to trigger an update of the client secret in Vault.
Required when using
client_secret_wo. - disable
Automated BooleanRotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+. Available only for Vault Enterprise
- environment String
- The Azure cloud environment. Valid values:
AzurePublicCloud, AzureUSGovernmentCloud, AzureChinaCloud,
AzureGermanCloud. Defaults to
AzurePublicCloud. - identity
Token StringAudience - The audience claim value for plugin identity tokens. Requires Vault 1.17+. Available only for Vault Enterprise
- identity
Token IntegerTtl - The TTL of generated identity tokens in seconds.
- max
Retries Integer - Maximum number of retries for Azure API requests.
Defaults to
3. - max
Retry IntegerDelay - The maximum delay in seconds between retries for Azure API requests.
Defaults to
60. - namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise. - resource String
- The configured URL for the application registered in Azure Active Directory.
- retry
Delay Integer - The initial delay in seconds between retries for Azure API requests.
Defaults to
4. - 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise - tenant
Id String - The tenant id for the Azure Active Directory organization.
- backend string
- The path the Azure auth backend being configured was
mounted at. Defaults to
azure. - client
Id string - The client id for credentials to query the Azure APIs. Currently read permissions to query compute resources are required.
- client
Secret string - The client secret for credentials to query the Azure APIs. Mutually exclusive with 'client_secret_wo'.
- client
Secret stringWo - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The client secret for credentials to query the Azure APIs. This field is write-only and will never be stored in state. Mutually exclusive with 'client_secret'. Requires 'client_secret_wo_version' to trigger updates.
- client
Secret numberWo Version - Version counter for the write-only client secret.
Increment this value to trigger an update of the client secret in Vault.
Required when using
client_secret_wo. - disable
Automated booleanRotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+. Available only for Vault Enterprise
- environment string
- The Azure cloud environment. Valid values:
AzurePublicCloud, AzureUSGovernmentCloud, AzureChinaCloud,
AzureGermanCloud. Defaults to
AzurePublicCloud. - identity
Token stringAudience - The audience claim value for plugin identity tokens. Requires Vault 1.17+. Available only for Vault Enterprise
- identity
Token numberTtl - The TTL of generated identity tokens in seconds.
- max
Retries number - Maximum number of retries for Azure API requests.
Defaults to
3. - max
Retry numberDelay - The maximum delay in seconds between retries for Azure API requests.
Defaults to
60. - namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise. - resource string
- The configured URL for the application registered in Azure Active Directory.
- retry
Delay number - The initial delay in seconds between retries for Azure API requests.
Defaults to
4. - 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise - tenant
Id string - The tenant id for the Azure Active Directory organization.
- backend str
- The path the Azure auth backend being configured was
mounted at. Defaults to
azure. - client_
id str - The client id for credentials to query the Azure APIs. Currently read permissions to query compute resources are required.
- client_
secret str - The client secret for credentials to query the Azure APIs. Mutually exclusive with 'client_secret_wo'.
- client_
secret_ strwo - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The client secret for credentials to query the Azure APIs. This field is write-only and will never be stored in state. Mutually exclusive with 'client_secret'. Requires 'client_secret_wo_version' to trigger updates.
- client_
secret_ intwo_ version - Version counter for the write-only client secret.
Increment this value to trigger an update of the client secret in Vault.
Required when using
client_secret_wo. - disable_
automated_ boolrotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+. Available only for Vault Enterprise
- environment str
- The Azure cloud environment. Valid values:
AzurePublicCloud, AzureUSGovernmentCloud, AzureChinaCloud,
AzureGermanCloud. Defaults to
AzurePublicCloud. - identity_
token_ straudience - The audience claim value for plugin identity tokens. Requires Vault 1.17+. Available only for Vault Enterprise
- identity_
token_ intttl - The TTL of generated identity tokens in seconds.
- max_
retries int - Maximum number of retries for Azure API requests.
Defaults to
3. - max_
retry_ intdelay - The maximum delay in seconds between retries for Azure API requests.
Defaults to
60. - namespace str
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise. - resource str
- The configured URL for the application registered in Azure Active Directory.
- retry_
delay int - The initial delay in seconds between retries for Azure API requests.
Defaults to
4. - 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise - tenant_
id str - The tenant id for the Azure Active Directory organization.
- backend String
- The path the Azure auth backend being configured was
mounted at. Defaults to
azure. - client
Id String - The client id for credentials to query the Azure APIs. Currently read permissions to query compute resources are required.
- client
Secret String - The client secret for credentials to query the Azure APIs. Mutually exclusive with 'client_secret_wo'.
- client
Secret StringWo - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The client secret for credentials to query the Azure APIs. This field is write-only and will never be stored in state. Mutually exclusive with 'client_secret'. Requires 'client_secret_wo_version' to trigger updates.
- client
Secret NumberWo Version - Version counter for the write-only client secret.
Increment this value to trigger an update of the client secret in Vault.
Required when using
client_secret_wo. - disable
Automated BooleanRotation - Cancels all upcoming rotations of the root credential until unset. Requires Vault Enterprise 1.19+. Available only for Vault Enterprise
- environment String
- The Azure cloud environment. Valid values:
AzurePublicCloud, AzureUSGovernmentCloud, AzureChinaCloud,
AzureGermanCloud. Defaults to
AzurePublicCloud. - identity
Token StringAudience - The audience claim value for plugin identity tokens. Requires Vault 1.17+. Available only for Vault Enterprise
- identity
Token NumberTtl - The TTL of generated identity tokens in seconds.
- max
Retries Number - Maximum number of retries for Azure API requests.
Defaults to
3. - max
Retry NumberDelay - The maximum delay in seconds between retries for Azure API requests.
Defaults to
60. - namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise. - resource String
- The configured URL for the application registered in Azure Active Directory.
- retry
Delay Number - The initial delay in seconds between retries for Azure API requests.
Defaults to
4. - 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise
- 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+. Available only for Vault Enterprise - tenant
Id String - The tenant id for the Azure Active Directory organization.
Package Details
- Repository
- Vault pulumi/pulumi-vault
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
vaultTerraform Provider.
published on Friday, Feb 6, 2026 by Pulumi
