You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"vault_azure_auth_backend_config" {
source="./modules/vault/r/vault_azure_auth_backend_config"# backend - (optional) is a type of stringbackend=null# client_id - (optional) is a type of stringclient_id=null# client_secret - (optional) is a type of stringclient_secret=null# environment - (optional) is a type of stringenvironment=null# resource - (required) is a type of stringresource=null# tenant_id - (required) is a type of stringtenant_id=null
}
variable"backend" {
description="(optional) - Unique name of the auth backend to configure."type=stringdefault=null
}
variable"client_id" {
description="(optional) - The client id for credentials to query the Azure APIs. Currently read permissions to query compute resources are required."type=stringdefault=null
}
variable"client_secret" {
description="(optional) - The client secret for credentials to query the Azure APIs"type=stringdefault=null
}
variable"environment" {
description="(optional) - The Azure cloud environment. Valid values: AzurePublicCloud, AzureUSGovernmentCloud, AzureChinaCloud, AzureGermanCloud."type=stringdefault=null
}
variable"resource" {
description="(required) - The configured URL for the application registered in Azure Active Directory."type=string
}
variable"tenant_id" {
description="(required) - The tenant id for the Azure Active Directory organization."type=string
}
resource"vault_azure_auth_backend_config""this" {
# backend - (optional) is a type of stringbackend=var.backend# client_id - (optional) is a type of stringclient_id=var.client_id# client_secret - (optional) is a type of stringclient_secret=var.client_secret# environment - (optional) is a type of stringenvironment=var.environment# resource - (required) is a type of stringresource=var.resource# tenant_id - (required) is a type of stringtenant_id=var.tenant_id
}