authentik.PolicyPassword
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as authentik from "@pulumi/authentik";
const name = new authentik.PolicyPassword("name", {
errorMessage: "foo",
lengthMin: 8,
});
import pulumi
import pulumi_authentik as authentik
name = authentik.PolicyPassword("name",
error_message="foo",
length_min=8)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/authentik/v2025/authentik"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := authentik.NewPolicyPassword(ctx, "name", &authentik.PolicyPasswordArgs{
ErrorMessage: pulumi.String("foo"),
LengthMin: pulumi.Float64(8),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Authentik = Pulumi.Authentik;
return await Deployment.RunAsync(() =>
{
var name = new Authentik.PolicyPassword("name", new()
{
ErrorMessage = "foo",
LengthMin = 8,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.authentik.PolicyPassword;
import com.pulumi.authentik.PolicyPasswordArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var name = new PolicyPassword("name", PolicyPasswordArgs.builder()
.errorMessage("foo")
.lengthMin(8)
.build());
}
}
resources:
name:
type: authentik:PolicyPassword
properties:
errorMessage: foo
lengthMin: 8
Create PolicyPassword Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PolicyPassword(name: string, args: PolicyPasswordArgs, opts?: CustomResourceOptions);
@overload
def PolicyPassword(resource_name: str,
args: PolicyPasswordArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PolicyPassword(resource_name: str,
opts: Optional[ResourceOptions] = None,
error_message: Optional[str] = None,
execution_logging: Optional[bool] = None,
hibp_allowed_count: Optional[float] = None,
amount_uppercase: Optional[float] = None,
check_have_i_been_pwned: Optional[bool] = None,
check_static_rules: Optional[bool] = None,
check_zxcvbn: Optional[bool] = None,
amount_symbols: Optional[float] = None,
amount_digits: Optional[float] = None,
amount_lowercase: Optional[float] = None,
length_min: Optional[float] = None,
name: Optional[str] = None,
password_field: Optional[str] = None,
policy_password_id: Optional[str] = None,
symbol_charset: Optional[str] = None,
zxcvbn_score_threshold: Optional[float] = None)
func NewPolicyPassword(ctx *Context, name string, args PolicyPasswordArgs, opts ...ResourceOption) (*PolicyPassword, error)
public PolicyPassword(string name, PolicyPasswordArgs args, CustomResourceOptions? opts = null)
public PolicyPassword(String name, PolicyPasswordArgs args)
public PolicyPassword(String name, PolicyPasswordArgs args, CustomResourceOptions options)
type: authentik:PolicyPassword
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 PolicyPasswordArgs
- 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 PolicyPasswordArgs
- 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 PolicyPasswordArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PolicyPasswordArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PolicyPasswordArgs
- 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 policyPasswordResource = new Authentik.PolicyPassword("policyPasswordResource", new()
{
ErrorMessage = "string",
ExecutionLogging = false,
HibpAllowedCount = 0,
AmountUppercase = 0,
CheckHaveIBeenPwned = false,
CheckStaticRules = false,
CheckZxcvbn = false,
AmountSymbols = 0,
AmountDigits = 0,
AmountLowercase = 0,
LengthMin = 0,
Name = "string",
PasswordField = "string",
PolicyPasswordId = "string",
SymbolCharset = "string",
ZxcvbnScoreThreshold = 0,
});
example, err := authentik.NewPolicyPassword(ctx, "policyPasswordResource", &authentik.PolicyPasswordArgs{
ErrorMessage: pulumi.String("string"),
ExecutionLogging: pulumi.Bool(false),
HibpAllowedCount: pulumi.Float64(0),
AmountUppercase: pulumi.Float64(0),
CheckHaveIBeenPwned: pulumi.Bool(false),
CheckStaticRules: pulumi.Bool(false),
CheckZxcvbn: pulumi.Bool(false),
AmountSymbols: pulumi.Float64(0),
AmountDigits: pulumi.Float64(0),
AmountLowercase: pulumi.Float64(0),
LengthMin: pulumi.Float64(0),
Name: pulumi.String("string"),
PasswordField: pulumi.String("string"),
PolicyPasswordId: pulumi.String("string"),
SymbolCharset: pulumi.String("string"),
ZxcvbnScoreThreshold: pulumi.Float64(0),
})
var policyPasswordResource = new PolicyPassword("policyPasswordResource", PolicyPasswordArgs.builder()
.errorMessage("string")
.executionLogging(false)
.hibpAllowedCount(0)
.amountUppercase(0)
.checkHaveIBeenPwned(false)
.checkStaticRules(false)
.checkZxcvbn(false)
.amountSymbols(0)
.amountDigits(0)
.amountLowercase(0)
.lengthMin(0)
.name("string")
.passwordField("string")
.policyPasswordId("string")
.symbolCharset("string")
.zxcvbnScoreThreshold(0)
.build());
policy_password_resource = authentik.PolicyPassword("policyPasswordResource",
error_message="string",
execution_logging=False,
hibp_allowed_count=0,
amount_uppercase=0,
check_have_i_been_pwned=False,
check_static_rules=False,
check_zxcvbn=False,
amount_symbols=0,
amount_digits=0,
amount_lowercase=0,
length_min=0,
name="string",
password_field="string",
policy_password_id="string",
symbol_charset="string",
zxcvbn_score_threshold=0)
const policyPasswordResource = new authentik.PolicyPassword("policyPasswordResource", {
errorMessage: "string",
executionLogging: false,
hibpAllowedCount: 0,
amountUppercase: 0,
checkHaveIBeenPwned: false,
checkStaticRules: false,
checkZxcvbn: false,
amountSymbols: 0,
amountDigits: 0,
amountLowercase: 0,
lengthMin: 0,
name: "string",
passwordField: "string",
policyPasswordId: "string",
symbolCharset: "string",
zxcvbnScoreThreshold: 0,
});
type: authentik:PolicyPassword
properties:
amountDigits: 0
amountLowercase: 0
amountSymbols: 0
amountUppercase: 0
checkHaveIBeenPwned: false
checkStaticRules: false
checkZxcvbn: false
errorMessage: string
executionLogging: false
hibpAllowedCount: 0
lengthMin: 0
name: string
passwordField: string
policyPasswordId: string
symbolCharset: string
zxcvbnScoreThreshold: 0
PolicyPassword 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 PolicyPassword resource accepts the following input properties:
- Error
Message string - Amount
Digits double - Amount
Lowercase double - Amount
Symbols double - Amount
Uppercase double - Check
Have boolIBeen Pwned - Defaults to
false
. - Check
Static boolRules - Defaults to
true
. - Check
Zxcvbn bool - Defaults to
false
. - Execution
Logging bool - Defaults to
false
. - Hibp
Allowed doubleCount - Defaults to
1
. - Length
Min double - Name string
- Password
Field string - Defaults to
password
. - Policy
Password stringId - The ID of this resource.
- Symbol
Charset string - Defaults to
!\"#$%&'()*+,-./:;<=>?@[\]^_
{|}~`. - Zxcvbn
Score doubleThreshold - Defaults to
2
.
- Error
Message string - Amount
Digits float64 - Amount
Lowercase float64 - Amount
Symbols float64 - Amount
Uppercase float64 - Check
Have boolIBeen Pwned - Defaults to
false
. - Check
Static boolRules - Defaults to
true
. - Check
Zxcvbn bool - Defaults to
false
. - Execution
Logging bool - Defaults to
false
. - Hibp
Allowed float64Count - Defaults to
1
. - Length
Min float64 - Name string
- Password
Field string - Defaults to
password
. - Policy
Password stringId - The ID of this resource.
- Symbol
Charset string - Defaults to
!\"#$%&'()*+,-./:;<=>?@[\]^_
{|}~`. - Zxcvbn
Score float64Threshold - Defaults to
2
.
- error
Message String - amount
Digits Double - amount
Lowercase Double - amount
Symbols Double - amount
Uppercase Double - check
Have BooleanIBeen Pwned - Defaults to
false
. - check
Static BooleanRules - Defaults to
true
. - check
Zxcvbn Boolean - Defaults to
false
. - execution
Logging Boolean - Defaults to
false
. - hibp
Allowed DoubleCount - Defaults to
1
. - length
Min Double - name String
- password
Field String - Defaults to
password
. - policy
Password StringId - The ID of this resource.
- symbol
Charset String - Defaults to
!\"#$%&'()*+,-./:;<=>?@[\]^_
{|}~`. - zxcvbn
Score DoubleThreshold - Defaults to
2
.
- error
Message string - amount
Digits number - amount
Lowercase number - amount
Symbols number - amount
Uppercase number - check
Have booleanIBeen Pwned - Defaults to
false
. - check
Static booleanRules - Defaults to
true
. - check
Zxcvbn boolean - Defaults to
false
. - execution
Logging boolean - Defaults to
false
. - hibp
Allowed numberCount - Defaults to
1
. - length
Min number - name string
- password
Field string - Defaults to
password
. - policy
Password stringId - The ID of this resource.
- symbol
Charset string - Defaults to
!\"#$%&'()*+,-./:;<=>?@[\]^_
{|}~`. - zxcvbn
Score numberThreshold - Defaults to
2
.
- error_
message str - amount_
digits float - amount_
lowercase float - amount_
symbols float - amount_
uppercase float - check_
have_ booli_ been_ pwned - Defaults to
false
. - check_
static_ boolrules - Defaults to
true
. - check_
zxcvbn bool - Defaults to
false
. - execution_
logging bool - Defaults to
false
. - hibp_
allowed_ floatcount - Defaults to
1
. - length_
min float - name str
- password_
field str - Defaults to
password
. - policy_
password_ strid - The ID of this resource.
- symbol_
charset str - Defaults to
!\"#$%&'()*+,-./:;<=>?@[\]^_
{|}~`. - zxcvbn_
score_ floatthreshold - Defaults to
2
.
- error
Message String - amount
Digits Number - amount
Lowercase Number - amount
Symbols Number - amount
Uppercase Number - check
Have BooleanIBeen Pwned - Defaults to
false
. - check
Static BooleanRules - Defaults to
true
. - check
Zxcvbn Boolean - Defaults to
false
. - execution
Logging Boolean - Defaults to
false
. - hibp
Allowed NumberCount - Defaults to
1
. - length
Min Number - name String
- password
Field String - Defaults to
password
. - policy
Password StringId - The ID of this resource.
- symbol
Charset String - Defaults to
!\"#$%&'()*+,-./:;<=>?@[\]^_
{|}~`. - zxcvbn
Score NumberThreshold - Defaults to
2
.
Outputs
All input properties are implicitly available as output properties. Additionally, the PolicyPassword 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 PolicyPassword Resource
Get an existing PolicyPassword 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?: PolicyPasswordState, opts?: CustomResourceOptions): PolicyPassword
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
amount_digits: Optional[float] = None,
amount_lowercase: Optional[float] = None,
amount_symbols: Optional[float] = None,
amount_uppercase: Optional[float] = None,
check_have_i_been_pwned: Optional[bool] = None,
check_static_rules: Optional[bool] = None,
check_zxcvbn: Optional[bool] = None,
error_message: Optional[str] = None,
execution_logging: Optional[bool] = None,
hibp_allowed_count: Optional[float] = None,
length_min: Optional[float] = None,
name: Optional[str] = None,
password_field: Optional[str] = None,
policy_password_id: Optional[str] = None,
symbol_charset: Optional[str] = None,
zxcvbn_score_threshold: Optional[float] = None) -> PolicyPassword
func GetPolicyPassword(ctx *Context, name string, id IDInput, state *PolicyPasswordState, opts ...ResourceOption) (*PolicyPassword, error)
public static PolicyPassword Get(string name, Input<string> id, PolicyPasswordState? state, CustomResourceOptions? opts = null)
public static PolicyPassword get(String name, Output<String> id, PolicyPasswordState state, CustomResourceOptions options)
resources: _: type: authentik:PolicyPassword 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.
- Amount
Digits double - Amount
Lowercase double - Amount
Symbols double - Amount
Uppercase double - Check
Have boolIBeen Pwned - Defaults to
false
. - Check
Static boolRules - Defaults to
true
. - Check
Zxcvbn bool - Defaults to
false
. - Error
Message string - Execution
Logging bool - Defaults to
false
. - Hibp
Allowed doubleCount - Defaults to
1
. - Length
Min double - Name string
- Password
Field string - Defaults to
password
. - Policy
Password stringId - The ID of this resource.
- Symbol
Charset string - Defaults to
!\"#$%&'()*+,-./:;<=>?@[\]^_
{|}~`. - Zxcvbn
Score doubleThreshold - Defaults to
2
.
- Amount
Digits float64 - Amount
Lowercase float64 - Amount
Symbols float64 - Amount
Uppercase float64 - Check
Have boolIBeen Pwned - Defaults to
false
. - Check
Static boolRules - Defaults to
true
. - Check
Zxcvbn bool - Defaults to
false
. - Error
Message string - Execution
Logging bool - Defaults to
false
. - Hibp
Allowed float64Count - Defaults to
1
. - Length
Min float64 - Name string
- Password
Field string - Defaults to
password
. - Policy
Password stringId - The ID of this resource.
- Symbol
Charset string - Defaults to
!\"#$%&'()*+,-./:;<=>?@[\]^_
{|}~`. - Zxcvbn
Score float64Threshold - Defaults to
2
.
- amount
Digits Double - amount
Lowercase Double - amount
Symbols Double - amount
Uppercase Double - check
Have BooleanIBeen Pwned - Defaults to
false
. - check
Static BooleanRules - Defaults to
true
. - check
Zxcvbn Boolean - Defaults to
false
. - error
Message String - execution
Logging Boolean - Defaults to
false
. - hibp
Allowed DoubleCount - Defaults to
1
. - length
Min Double - name String
- password
Field String - Defaults to
password
. - policy
Password StringId - The ID of this resource.
- symbol
Charset String - Defaults to
!\"#$%&'()*+,-./:;<=>?@[\]^_
{|}~`. - zxcvbn
Score DoubleThreshold - Defaults to
2
.
- amount
Digits number - amount
Lowercase number - amount
Symbols number - amount
Uppercase number - check
Have booleanIBeen Pwned - Defaults to
false
. - check
Static booleanRules - Defaults to
true
. - check
Zxcvbn boolean - Defaults to
false
. - error
Message string - execution
Logging boolean - Defaults to
false
. - hibp
Allowed numberCount - Defaults to
1
. - length
Min number - name string
- password
Field string - Defaults to
password
. - policy
Password stringId - The ID of this resource.
- symbol
Charset string - Defaults to
!\"#$%&'()*+,-./:;<=>?@[\]^_
{|}~`. - zxcvbn
Score numberThreshold - Defaults to
2
.
- amount_
digits float - amount_
lowercase float - amount_
symbols float - amount_
uppercase float - check_
have_ booli_ been_ pwned - Defaults to
false
. - check_
static_ boolrules - Defaults to
true
. - check_
zxcvbn bool - Defaults to
false
. - error_
message str - execution_
logging bool - Defaults to
false
. - hibp_
allowed_ floatcount - Defaults to
1
. - length_
min float - name str
- password_
field str - Defaults to
password
. - policy_
password_ strid - The ID of this resource.
- symbol_
charset str - Defaults to
!\"#$%&'()*+,-./:;<=>?@[\]^_
{|}~`. - zxcvbn_
score_ floatthreshold - Defaults to
2
.
- amount
Digits Number - amount
Lowercase Number - amount
Symbols Number - amount
Uppercase Number - check
Have BooleanIBeen Pwned - Defaults to
false
. - check
Static BooleanRules - Defaults to
true
. - check
Zxcvbn Boolean - Defaults to
false
. - error
Message String - execution
Logging Boolean - Defaults to
false
. - hibp
Allowed NumberCount - Defaults to
1
. - length
Min Number - name String
- password
Field String - Defaults to
password
. - policy
Password StringId - The ID of this resource.
- symbol
Charset String - Defaults to
!\"#$%&'()*+,-./:;<=>?@[\]^_
{|}~`. - zxcvbn
Score NumberThreshold - Defaults to
2
.
Package Details
- Repository
- authentik goauthentik/terraform-provider-authentik
- License
- Notes
- This Pulumi package is based on the
authentik
Terraform Provider.