hsdp.IamPasswordPolicy
Explore with Pulumi AI
Provides a resource for managing HSDP IAM password policies.
Example Usage
The following example manages a password policy for an org
import * as pulumi from "@pulumi/pulumi";
import * as hsdp from "@pulumi/hsdp";
const mypolicy = new hsdp.IamPasswordPolicy("mypolicy", {
managingOrganization: data.hsdp_iam_org.myorg.id,
expiryPeriodInDays: 180,
historyCount: 5,
complexity: {
minLength: 8,
maxLength: 32,
minNumerics: 1,
minLowercase: 1,
minUppercase: 1,
minSpecialChars: 1,
},
});
import pulumi
import pulumi_hsdp as hsdp
mypolicy = hsdp.IamPasswordPolicy("mypolicy",
managing_organization=data["hsdp_iam_org"]["myorg"]["id"],
expiry_period_in_days=180,
history_count=5,
complexity={
"min_length": 8,
"max_length": 32,
"min_numerics": 1,
"min_lowercase": 1,
"min_uppercase": 1,
"min_special_chars": 1,
})
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/hsdp/hsdp"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := hsdp.NewIamPasswordPolicy(ctx, "mypolicy", &hsdp.IamPasswordPolicyArgs{
ManagingOrganization: pulumi.Any(data.Hsdp_iam_org.Myorg.Id),
ExpiryPeriodInDays: pulumi.Float64(180),
HistoryCount: pulumi.Float64(5),
Complexity: &hsdp.IamPasswordPolicyComplexityArgs{
MinLength: pulumi.Float64(8),
MaxLength: pulumi.Float64(32),
MinNumerics: pulumi.Float64(1),
MinLowercase: pulumi.Float64(1),
MinUppercase: pulumi.Float64(1),
MinSpecialChars: pulumi.Float64(1),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Hsdp = Pulumi.Hsdp;
return await Deployment.RunAsync(() =>
{
var mypolicy = new Hsdp.IamPasswordPolicy("mypolicy", new()
{
ManagingOrganization = data.Hsdp_iam_org.Myorg.Id,
ExpiryPeriodInDays = 180,
HistoryCount = 5,
Complexity = new Hsdp.Inputs.IamPasswordPolicyComplexityArgs
{
MinLength = 8,
MaxLength = 32,
MinNumerics = 1,
MinLowercase = 1,
MinUppercase = 1,
MinSpecialChars = 1,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.hsdp.IamPasswordPolicy;
import com.pulumi.hsdp.IamPasswordPolicyArgs;
import com.pulumi.hsdp.inputs.IamPasswordPolicyComplexityArgs;
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 mypolicy = new IamPasswordPolicy("mypolicy", IamPasswordPolicyArgs.builder()
.managingOrganization(data.hsdp_iam_org().myorg().id())
.expiryPeriodInDays(180)
.historyCount(5)
.complexity(IamPasswordPolicyComplexityArgs.builder()
.minLength(8)
.maxLength(32)
.minNumerics(1)
.minLowercase(1)
.minUppercase(1)
.minSpecialChars(1)
.build())
.build());
}
}
resources:
mypolicy:
type: hsdp:IamPasswordPolicy
properties:
managingOrganization: ${data.hsdp_iam_org.myorg.id}
expiryPeriodInDays: 180
historyCount: 5
complexity:
minLength: 8
maxLength: 32
minNumerics: 1
minLowercase: 1
minUppercase: 1
minSpecialChars: 1
Create IamPasswordPolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IamPasswordPolicy(name: string, args: IamPasswordPolicyArgs, opts?: CustomResourceOptions);
@overload
def IamPasswordPolicy(resource_name: str,
args: IamPasswordPolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IamPasswordPolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
complexity: Optional[IamPasswordPolicyComplexityArgs] = None,
managing_organization: Optional[str] = None,
challenge_policy: Optional[IamPasswordPolicyChallengePolicyArgs] = None,
challenges_enabled: Optional[bool] = None,
expiry_period_in_days: Optional[float] = None,
history_count: Optional[float] = None,
iam_password_policy_id: Optional[str] = None)
func NewIamPasswordPolicy(ctx *Context, name string, args IamPasswordPolicyArgs, opts ...ResourceOption) (*IamPasswordPolicy, error)
public IamPasswordPolicy(string name, IamPasswordPolicyArgs args, CustomResourceOptions? opts = null)
public IamPasswordPolicy(String name, IamPasswordPolicyArgs args)
public IamPasswordPolicy(String name, IamPasswordPolicyArgs args, CustomResourceOptions options)
type: hsdp:IamPasswordPolicy
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 IamPasswordPolicyArgs
- 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 IamPasswordPolicyArgs
- 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 IamPasswordPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IamPasswordPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IamPasswordPolicyArgs
- 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 iamPasswordPolicyResource = new Hsdp.IamPasswordPolicy("iamPasswordPolicyResource", new()
{
Complexity = new Hsdp.Inputs.IamPasswordPolicyComplexityArgs
{
MaxLength = 0,
MinLength = 0,
MinLowercase = 0,
MinNumerics = 0,
MinSpecialChars = 0,
MinUppercase = 0,
},
ManagingOrganization = "string",
ChallengePolicy = new Hsdp.Inputs.IamPasswordPolicyChallengePolicyArgs
{
DefaultQuestions = new[]
{
"string",
},
MaxIncorrectAttempts = 0,
MinAnswerCount = 0,
MinQuestionCount = 0,
},
ChallengesEnabled = false,
ExpiryPeriodInDays = 0,
HistoryCount = 0,
IamPasswordPolicyId = "string",
});
example, err := hsdp.NewIamPasswordPolicy(ctx, "iamPasswordPolicyResource", &hsdp.IamPasswordPolicyArgs{
Complexity: &hsdp.IamPasswordPolicyComplexityArgs{
MaxLength: pulumi.Float64(0),
MinLength: pulumi.Float64(0),
MinLowercase: pulumi.Float64(0),
MinNumerics: pulumi.Float64(0),
MinSpecialChars: pulumi.Float64(0),
MinUppercase: pulumi.Float64(0),
},
ManagingOrganization: pulumi.String("string"),
ChallengePolicy: &hsdp.IamPasswordPolicyChallengePolicyArgs{
DefaultQuestions: pulumi.StringArray{
pulumi.String("string"),
},
MaxIncorrectAttempts: pulumi.Float64(0),
MinAnswerCount: pulumi.Float64(0),
MinQuestionCount: pulumi.Float64(0),
},
ChallengesEnabled: pulumi.Bool(false),
ExpiryPeriodInDays: pulumi.Float64(0),
HistoryCount: pulumi.Float64(0),
IamPasswordPolicyId: pulumi.String("string"),
})
var iamPasswordPolicyResource = new IamPasswordPolicy("iamPasswordPolicyResource", IamPasswordPolicyArgs.builder()
.complexity(IamPasswordPolicyComplexityArgs.builder()
.maxLength(0)
.minLength(0)
.minLowercase(0)
.minNumerics(0)
.minSpecialChars(0)
.minUppercase(0)
.build())
.managingOrganization("string")
.challengePolicy(IamPasswordPolicyChallengePolicyArgs.builder()
.defaultQuestions("string")
.maxIncorrectAttempts(0)
.minAnswerCount(0)
.minQuestionCount(0)
.build())
.challengesEnabled(false)
.expiryPeriodInDays(0)
.historyCount(0)
.iamPasswordPolicyId("string")
.build());
iam_password_policy_resource = hsdp.IamPasswordPolicy("iamPasswordPolicyResource",
complexity={
"max_length": 0,
"min_length": 0,
"min_lowercase": 0,
"min_numerics": 0,
"min_special_chars": 0,
"min_uppercase": 0,
},
managing_organization="string",
challenge_policy={
"default_questions": ["string"],
"max_incorrect_attempts": 0,
"min_answer_count": 0,
"min_question_count": 0,
},
challenges_enabled=False,
expiry_period_in_days=0,
history_count=0,
iam_password_policy_id="string")
const iamPasswordPolicyResource = new hsdp.IamPasswordPolicy("iamPasswordPolicyResource", {
complexity: {
maxLength: 0,
minLength: 0,
minLowercase: 0,
minNumerics: 0,
minSpecialChars: 0,
minUppercase: 0,
},
managingOrganization: "string",
challengePolicy: {
defaultQuestions: ["string"],
maxIncorrectAttempts: 0,
minAnswerCount: 0,
minQuestionCount: 0,
},
challengesEnabled: false,
expiryPeriodInDays: 0,
historyCount: 0,
iamPasswordPolicyId: "string",
});
type: hsdp:IamPasswordPolicy
properties:
challengePolicy:
defaultQuestions:
- string
maxIncorrectAttempts: 0
minAnswerCount: 0
minQuestionCount: 0
challengesEnabled: false
complexity:
maxLength: 0
minLength: 0
minLowercase: 0
minNumerics: 0
minSpecialChars: 0
minUppercase: 0
expiryPeriodInDays: 0
historyCount: 0
iamPasswordPolicyId: string
managingOrganization: string
IamPasswordPolicy 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 IamPasswordPolicy resource accepts the following input properties:
- Complexity
Iam
Password Policy Complexity - Different criteria that decides the strength of user password for an organization. Block
- Managing
Organization string - The UUID of the IAM Org to apply this policy to
- Challenge
Policy IamPassword Policy Challenge Policy - Specify KBA settings
- Challenges
Enabled bool - A boolean value indicating if challenges are enabled at organization level. If the value is set to true,
challenge_policy
attribute is mandatory. - Expiry
Period doubleIn Days - number - The number of days after which the user's password expires.
- History
Count double - The number of previous passwords that cannot be used as new password.
- Iam
Password stringPolicy Id - The GUID of the password policy
- Complexity
Iam
Password Policy Complexity Args - Different criteria that decides the strength of user password for an organization. Block
- Managing
Organization string - The UUID of the IAM Org to apply this policy to
- Challenge
Policy IamPassword Policy Challenge Policy Args - Specify KBA settings
- Challenges
Enabled bool - A boolean value indicating if challenges are enabled at organization level. If the value is set to true,
challenge_policy
attribute is mandatory. - Expiry
Period float64In Days - number - The number of days after which the user's password expires.
- History
Count float64 - The number of previous passwords that cannot be used as new password.
- Iam
Password stringPolicy Id - The GUID of the password policy
- complexity
Iam
Password Policy Complexity - Different criteria that decides the strength of user password for an organization. Block
- managing
Organization String - The UUID of the IAM Org to apply this policy to
- challenge
Policy IamPassword Policy Challenge Policy - Specify KBA settings
- challenges
Enabled Boolean - A boolean value indicating if challenges are enabled at organization level. If the value is set to true,
challenge_policy
attribute is mandatory. - expiry
Period DoubleIn Days - number - The number of days after which the user's password expires.
- history
Count Double - The number of previous passwords that cannot be used as new password.
- iam
Password StringPolicy Id - The GUID of the password policy
- complexity
Iam
Password Policy Complexity - Different criteria that decides the strength of user password for an organization. Block
- managing
Organization string - The UUID of the IAM Org to apply this policy to
- challenge
Policy IamPassword Policy Challenge Policy - Specify KBA settings
- challenges
Enabled boolean - A boolean value indicating if challenges are enabled at organization level. If the value is set to true,
challenge_policy
attribute is mandatory. - expiry
Period numberIn Days - number - The number of days after which the user's password expires.
- history
Count number - The number of previous passwords that cannot be used as new password.
- iam
Password stringPolicy Id - The GUID of the password policy
- complexity
Iam
Password Policy Complexity Args - Different criteria that decides the strength of user password for an organization. Block
- managing_
organization str - The UUID of the IAM Org to apply this policy to
- challenge_
policy IamPassword Policy Challenge Policy Args - Specify KBA settings
- challenges_
enabled bool - A boolean value indicating if challenges are enabled at organization level. If the value is set to true,
challenge_policy
attribute is mandatory. - expiry_
period_ floatin_ days - number - The number of days after which the user's password expires.
- history_
count float - The number of previous passwords that cannot be used as new password.
- iam_
password_ strpolicy_ id - The GUID of the password policy
- complexity Property Map
- Different criteria that decides the strength of user password for an organization. Block
- managing
Organization String - The UUID of the IAM Org to apply this policy to
- challenge
Policy Property Map - Specify KBA settings
- challenges
Enabled Boolean - A boolean value indicating if challenges are enabled at organization level. If the value is set to true,
challenge_policy
attribute is mandatory. - expiry
Period NumberIn Days - number - The number of days after which the user's password expires.
- history
Count Number - The number of previous passwords that cannot be used as new password.
- iam
Password StringPolicy Id - The GUID of the password policy
Outputs
All input properties are implicitly available as output properties. Additionally, the IamPasswordPolicy resource produces the following output properties:
Look up Existing IamPasswordPolicy Resource
Get an existing IamPasswordPolicy 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?: IamPasswordPolicyState, opts?: CustomResourceOptions): IamPasswordPolicy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
_policy: Optional[str] = None,
challenge_policy: Optional[IamPasswordPolicyChallengePolicyArgs] = None,
challenges_enabled: Optional[bool] = None,
complexity: Optional[IamPasswordPolicyComplexityArgs] = None,
expiry_period_in_days: Optional[float] = None,
history_count: Optional[float] = None,
iam_password_policy_id: Optional[str] = None,
managing_organization: Optional[str] = None) -> IamPasswordPolicy
func GetIamPasswordPolicy(ctx *Context, name string, id IDInput, state *IamPasswordPolicyState, opts ...ResourceOption) (*IamPasswordPolicy, error)
public static IamPasswordPolicy Get(string name, Input<string> id, IamPasswordPolicyState? state, CustomResourceOptions? opts = null)
public static IamPasswordPolicy get(String name, Output<String> id, IamPasswordPolicyState state, CustomResourceOptions options)
resources: _: type: hsdp:IamPasswordPolicy 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.
- Challenge
Policy IamPassword Policy Challenge Policy - Specify KBA settings
- Challenges
Enabled bool - A boolean value indicating if challenges are enabled at organization level. If the value is set to true,
challenge_policy
attribute is mandatory. - Complexity
Iam
Password Policy Complexity - Different criteria that decides the strength of user password for an organization. Block
- Expiry
Period doubleIn Days - number - The number of days after which the user's password expires.
- History
Count double - The number of previous passwords that cannot be used as new password.
- Iam
Password stringPolicy Id - The GUID of the password policy
- Managing
Organization string - The UUID of the IAM Org to apply this policy to
- _
policy string
- Challenge
Policy IamPassword Policy Challenge Policy Args - Specify KBA settings
- Challenges
Enabled bool - A boolean value indicating if challenges are enabled at organization level. If the value is set to true,
challenge_policy
attribute is mandatory. - Complexity
Iam
Password Policy Complexity Args - Different criteria that decides the strength of user password for an organization. Block
- Expiry
Period float64In Days - number - The number of days after which the user's password expires.
- History
Count float64 - The number of previous passwords that cannot be used as new password.
- Iam
Password stringPolicy Id - The GUID of the password policy
- Managing
Organization string - The UUID of the IAM Org to apply this policy to
- _
policy string
- _
policy String - challenge
Policy IamPassword Policy Challenge Policy - Specify KBA settings
- challenges
Enabled Boolean - A boolean value indicating if challenges are enabled at organization level. If the value is set to true,
challenge_policy
attribute is mandatory. - complexity
Iam
Password Policy Complexity - Different criteria that decides the strength of user password for an organization. Block
- expiry
Period DoubleIn Days - number - The number of days after which the user's password expires.
- history
Count Double - The number of previous passwords that cannot be used as new password.
- iam
Password StringPolicy Id - The GUID of the password policy
- managing
Organization String - The UUID of the IAM Org to apply this policy to
- _
policy string - challenge
Policy IamPassword Policy Challenge Policy - Specify KBA settings
- challenges
Enabled boolean - A boolean value indicating if challenges are enabled at organization level. If the value is set to true,
challenge_policy
attribute is mandatory. - complexity
Iam
Password Policy Complexity - Different criteria that decides the strength of user password for an organization. Block
- expiry
Period numberIn Days - number - The number of days after which the user's password expires.
- history
Count number - The number of previous passwords that cannot be used as new password.
- iam
Password stringPolicy Id - The GUID of the password policy
- managing
Organization string - The UUID of the IAM Org to apply this policy to
- _
policy str - challenge_
policy IamPassword Policy Challenge Policy Args - Specify KBA settings
- challenges_
enabled bool - A boolean value indicating if challenges are enabled at organization level. If the value is set to true,
challenge_policy
attribute is mandatory. - complexity
Iam
Password Policy Complexity Args - Different criteria that decides the strength of user password for an organization. Block
- expiry_
period_ floatin_ days - number - The number of days after which the user's password expires.
- history_
count float - The number of previous passwords that cannot be used as new password.
- iam_
password_ strpolicy_ id - The GUID of the password policy
- managing_
organization str - The UUID of the IAM Org to apply this policy to
- _
policy String - challenge
Policy Property Map - Specify KBA settings
- challenges
Enabled Boolean - A boolean value indicating if challenges are enabled at organization level. If the value is set to true,
challenge_policy
attribute is mandatory. - complexity Property Map
- Different criteria that decides the strength of user password for an organization. Block
- expiry
Period NumberIn Days - number - The number of days after which the user's password expires.
- history
Count Number - The number of previous passwords that cannot be used as new password.
- iam
Password StringPolicy Id - The GUID of the password policy
- managing
Organization String - The UUID of the IAM Org to apply this policy to
Supporting Types
IamPasswordPolicyChallengePolicy, IamPasswordPolicyChallengePolicyArgs
- Default
Questions List<string> - A Multi-valued String attribute that contains one or more default question a user may use when setting their challenge questions.
- Max
Incorrect doubleAttempts - An Integer indicates the maximum number of failed reset password attempts using challenges.
- Min
Answer doubleCount - An Integer indicating the minimum number of challenge answers a user MUST answer when attempting to reset their password.
- Min
Question doubleCount - An Integer indicating the minimum number of challenge questions a user MUST answer when setting challenge question answers.
- Default
Questions []string - A Multi-valued String attribute that contains one or more default question a user may use when setting their challenge questions.
- Max
Incorrect float64Attempts - An Integer indicates the maximum number of failed reset password attempts using challenges.
- Min
Answer float64Count - An Integer indicating the minimum number of challenge answers a user MUST answer when attempting to reset their password.
- Min
Question float64Count - An Integer indicating the minimum number of challenge questions a user MUST answer when setting challenge question answers.
- default
Questions List<String> - A Multi-valued String attribute that contains one or more default question a user may use when setting their challenge questions.
- max
Incorrect DoubleAttempts - An Integer indicates the maximum number of failed reset password attempts using challenges.
- min
Answer DoubleCount - An Integer indicating the minimum number of challenge answers a user MUST answer when attempting to reset their password.
- min
Question DoubleCount - An Integer indicating the minimum number of challenge questions a user MUST answer when setting challenge question answers.
- default
Questions string[] - A Multi-valued String attribute that contains one or more default question a user may use when setting their challenge questions.
- max
Incorrect numberAttempts - An Integer indicates the maximum number of failed reset password attempts using challenges.
- min
Answer numberCount - An Integer indicating the minimum number of challenge answers a user MUST answer when attempting to reset their password.
- min
Question numberCount - An Integer indicating the minimum number of challenge questions a user MUST answer when setting challenge question answers.
- default_
questions Sequence[str] - A Multi-valued String attribute that contains one or more default question a user may use when setting their challenge questions.
- max_
incorrect_ floatattempts - An Integer indicates the maximum number of failed reset password attempts using challenges.
- min_
answer_ floatcount - An Integer indicating the minimum number of challenge answers a user MUST answer when attempting to reset their password.
- min_
question_ floatcount - An Integer indicating the minimum number of challenge questions a user MUST answer when setting challenge question answers.
- default
Questions List<String> - A Multi-valued String attribute that contains one or more default question a user may use when setting their challenge questions.
- max
Incorrect NumberAttempts - An Integer indicates the maximum number of failed reset password attempts using challenges.
- min
Answer NumberCount - An Integer indicating the minimum number of challenge answers a user MUST answer when attempting to reset their password.
- min
Question NumberCount - An Integer indicating the minimum number of challenge questions a user MUST answer when setting challenge question answers.
IamPasswordPolicyComplexity, IamPasswordPolicyComplexityArgs
- Max
Length double - The maximum number of characters password can contain.
- Min
Length double - The minimum number of characters password can contain. Default 8
- Min
Lowercase double - The minimum number of lower characters password can contain.
- Min
Numerics double - Min
Special doubleChars - The minimum number of special characters password can contain.
- Min
Uppercase double - The minimum number of uppercase characters password can contain.
- Max
Length float64 - The maximum number of characters password can contain.
- Min
Length float64 - The minimum number of characters password can contain. Default 8
- Min
Lowercase float64 - The minimum number of lower characters password can contain.
- Min
Numerics float64 - Min
Special float64Chars - The minimum number of special characters password can contain.
- Min
Uppercase float64 - The minimum number of uppercase characters password can contain.
- max
Length Double - The maximum number of characters password can contain.
- min
Length Double - The minimum number of characters password can contain. Default 8
- min
Lowercase Double - The minimum number of lower characters password can contain.
- min
Numerics Double - min
Special DoubleChars - The minimum number of special characters password can contain.
- min
Uppercase Double - The minimum number of uppercase characters password can contain.
- max
Length number - The maximum number of characters password can contain.
- min
Length number - The minimum number of characters password can contain. Default 8
- min
Lowercase number - The minimum number of lower characters password can contain.
- min
Numerics number - min
Special numberChars - The minimum number of special characters password can contain.
- min
Uppercase number - The minimum number of uppercase characters password can contain.
- max_
length float - The maximum number of characters password can contain.
- min_
length float - The minimum number of characters password can contain. Default 8
- min_
lowercase float - The minimum number of lower characters password can contain.
- min_
numerics float - min_
special_ floatchars - The minimum number of special characters password can contain.
- min_
uppercase float - The minimum number of uppercase characters password can contain.
- max
Length Number - The maximum number of characters password can contain.
- min
Length Number - The minimum number of characters password can contain. Default 8
- min
Lowercase Number - The minimum number of lower characters password can contain.
- min
Numerics Number - min
Special NumberChars - The minimum number of special characters password can contain.
- min
Uppercase Number - The minimum number of uppercase characters password can contain.
Import
If the organization already has a password policy it will be imported automatically.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- hsdp philips-software/terraform-provider-hsdp
- License
- Notes
- This Pulumi package is based on the
hsdp
Terraform Provider.