alicloud.ram.AccountPasswordPolicy
Explore with Pulumi AI
Import
RAM account password policy can be imported using the id
, e.g. bash
$ pulumi import alicloud:ram/accountPasswordPolicy:AccountPasswordPolicy example ram-account-password-policy
Example Usage
Empty resource sets defaults values for every property.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var @default = new AliCloud.Ram.AccountPasswordPolicy("default");
});
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ram"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ram.NewAccountPasswordPolicy(ctx, "default", nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.ram.AccountPasswordPolicy;
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 default_ = new AccountPasswordPolicy("default");
}
}
import pulumi
import pulumi_alicloud as alicloud
default = alicloud.ram.AccountPasswordPolicy("default")
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const _default = new alicloud.ram.AccountPasswordPolicy("default", {});
resources:
default:
type: alicloud:ram:AccountPasswordPolicy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var corporate = new AliCloud.Ram.AccountPasswordPolicy("corporate", new()
{
HardExpiry = true,
MaxLoginAttempts = 3,
MaxPasswordAge = 12,
MinimumPasswordLength = 9,
PasswordReusePrevention = 5,
RequireLowercaseCharacters = false,
RequireNumbers = false,
RequireSymbols = false,
RequireUppercaseCharacters = false,
});
});
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ram"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ram.NewAccountPasswordPolicy(ctx, "corporate", &ram.AccountPasswordPolicyArgs{
HardExpiry: pulumi.Bool(true),
MaxLoginAttempts: pulumi.Int(3),
MaxPasswordAge: pulumi.Int(12),
MinimumPasswordLength: pulumi.Int(9),
PasswordReusePrevention: pulumi.Int(5),
RequireLowercaseCharacters: pulumi.Bool(false),
RequireNumbers: pulumi.Bool(false),
RequireSymbols: pulumi.Bool(false),
RequireUppercaseCharacters: pulumi.Bool(false),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.ram.AccountPasswordPolicy;
import com.pulumi.alicloud.ram.AccountPasswordPolicyArgs;
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 corporate = new AccountPasswordPolicy("corporate", AccountPasswordPolicyArgs.builder()
.hardExpiry(true)
.maxLoginAttempts(3)
.maxPasswordAge(12)
.minimumPasswordLength(9)
.passwordReusePrevention(5)
.requireLowercaseCharacters(false)
.requireNumbers(false)
.requireSymbols(false)
.requireUppercaseCharacters(false)
.build());
}
}
import pulumi
import pulumi_alicloud as alicloud
corporate = alicloud.ram.AccountPasswordPolicy("corporate",
hard_expiry=True,
max_login_attempts=3,
max_password_age=12,
minimum_password_length=9,
password_reuse_prevention=5,
require_lowercase_characters=False,
require_numbers=False,
require_symbols=False,
require_uppercase_characters=False)
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const corporate = new alicloud.ram.AccountPasswordPolicy("corporate", {
hardExpiry: true,
maxLoginAttempts: 3,
maxPasswordAge: 12,
minimumPasswordLength: 9,
passwordReusePrevention: 5,
requireLowercaseCharacters: false,
requireNumbers: false,
requireSymbols: false,
requireUppercaseCharacters: false,
});
resources:
corporate:
type: alicloud:ram:AccountPasswordPolicy
properties:
hardExpiry: true
maxLoginAttempts: 3
maxPasswordAge: 12
minimumPasswordLength: 9
passwordReusePrevention: 5
requireLowercaseCharacters: false
requireNumbers: false
requireSymbols: false
requireUppercaseCharacters: false
Create AccountPasswordPolicy Resource
new AccountPasswordPolicy(name: string, args?: AccountPasswordPolicyArgs, opts?: CustomResourceOptions);
@overload
def AccountPasswordPolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
hard_expiry: Optional[bool] = None,
max_login_attempts: Optional[int] = None,
max_password_age: Optional[int] = None,
minimum_password_length: Optional[int] = None,
password_reuse_prevention: Optional[int] = None,
require_lowercase_characters: Optional[bool] = None,
require_numbers: Optional[bool] = None,
require_symbols: Optional[bool] = None,
require_uppercase_characters: Optional[bool] = None)
@overload
def AccountPasswordPolicy(resource_name: str,
args: Optional[AccountPasswordPolicyArgs] = None,
opts: Optional[ResourceOptions] = None)
func NewAccountPasswordPolicy(ctx *Context, name string, args *AccountPasswordPolicyArgs, opts ...ResourceOption) (*AccountPasswordPolicy, error)
public AccountPasswordPolicy(string name, AccountPasswordPolicyArgs? args = null, CustomResourceOptions? opts = null)
public AccountPasswordPolicy(String name, AccountPasswordPolicyArgs args)
public AccountPasswordPolicy(String name, AccountPasswordPolicyArgs args, CustomResourceOptions options)
type: alicloud:ram:AccountPasswordPolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AccountPasswordPolicyArgs
- 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 AccountPasswordPolicyArgs
- 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 AccountPasswordPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AccountPasswordPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AccountPasswordPolicyArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
AccountPasswordPolicy Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The AccountPasswordPolicy resource accepts the following input properties:
- Hard
Expiry bool Specifies if a password can expire in a hard way. Default to false.
- Max
Login intAttempts Maximum logon attempts with an incorrect password within an hour. Valid value range: [0-32]. Default to 5.
- Max
Password intAge The number of days after which password expires. A value of 0 indicates that the password never expires. Valid value range: [0-1095]. Default to 0.
- Minimum
Password intLength Minimal required length of password for a user. Valid value range: [8-32]. Default to 12.
- Password
Reuse intPrevention User is not allowed to use the latest number of passwords specified in this parameter. A value of 0 indicates the password history check policy is disabled. Valid value range: [0-24]. Default to 0.
- Require
Lowercase boolCharacters Specifies if the occurrence of a lowercase character in the password is mandatory. Default to true.
- Require
Numbers bool Specifies if the occurrence of a number in the password is mandatory. Default to true.
- Require
Symbols bool Specifies if the occurrence of a special character in the password is mandatory. Default to true.
- Require
Uppercase boolCharacters Specifies if the occurrence of an uppercase character in the password is mandatory. Default to true.
- Hard
Expiry bool Specifies if a password can expire in a hard way. Default to false.
- Max
Login intAttempts Maximum logon attempts with an incorrect password within an hour. Valid value range: [0-32]. Default to 5.
- Max
Password intAge The number of days after which password expires. A value of 0 indicates that the password never expires. Valid value range: [0-1095]. Default to 0.
- Minimum
Password intLength Minimal required length of password for a user. Valid value range: [8-32]. Default to 12.
- Password
Reuse intPrevention User is not allowed to use the latest number of passwords specified in this parameter. A value of 0 indicates the password history check policy is disabled. Valid value range: [0-24]. Default to 0.
- Require
Lowercase boolCharacters Specifies if the occurrence of a lowercase character in the password is mandatory. Default to true.
- Require
Numbers bool Specifies if the occurrence of a number in the password is mandatory. Default to true.
- Require
Symbols bool Specifies if the occurrence of a special character in the password is mandatory. Default to true.
- Require
Uppercase boolCharacters Specifies if the occurrence of an uppercase character in the password is mandatory. Default to true.
- hard
Expiry Boolean Specifies if a password can expire in a hard way. Default to false.
- max
Login IntegerAttempts Maximum logon attempts with an incorrect password within an hour. Valid value range: [0-32]. Default to 5.
- max
Password IntegerAge The number of days after which password expires. A value of 0 indicates that the password never expires. Valid value range: [0-1095]. Default to 0.
- minimum
Password IntegerLength Minimal required length of password for a user. Valid value range: [8-32]. Default to 12.
- password
Reuse IntegerPrevention User is not allowed to use the latest number of passwords specified in this parameter. A value of 0 indicates the password history check policy is disabled. Valid value range: [0-24]. Default to 0.
- require
Lowercase BooleanCharacters Specifies if the occurrence of a lowercase character in the password is mandatory. Default to true.
- require
Numbers Boolean Specifies if the occurrence of a number in the password is mandatory. Default to true.
- require
Symbols Boolean Specifies if the occurrence of a special character in the password is mandatory. Default to true.
- require
Uppercase BooleanCharacters Specifies if the occurrence of an uppercase character in the password is mandatory. Default to true.
- hard
Expiry boolean Specifies if a password can expire in a hard way. Default to false.
- max
Login numberAttempts Maximum logon attempts with an incorrect password within an hour. Valid value range: [0-32]. Default to 5.
- max
Password numberAge The number of days after which password expires. A value of 0 indicates that the password never expires. Valid value range: [0-1095]. Default to 0.
- minimum
Password numberLength Minimal required length of password for a user. Valid value range: [8-32]. Default to 12.
- password
Reuse numberPrevention User is not allowed to use the latest number of passwords specified in this parameter. A value of 0 indicates the password history check policy is disabled. Valid value range: [0-24]. Default to 0.
- require
Lowercase booleanCharacters Specifies if the occurrence of a lowercase character in the password is mandatory. Default to true.
- require
Numbers boolean Specifies if the occurrence of a number in the password is mandatory. Default to true.
- require
Symbols boolean Specifies if the occurrence of a special character in the password is mandatory. Default to true.
- require
Uppercase booleanCharacters Specifies if the occurrence of an uppercase character in the password is mandatory. Default to true.
- hard_
expiry bool Specifies if a password can expire in a hard way. Default to false.
- max_
login_ intattempts Maximum logon attempts with an incorrect password within an hour. Valid value range: [0-32]. Default to 5.
- max_
password_ intage The number of days after which password expires. A value of 0 indicates that the password never expires. Valid value range: [0-1095]. Default to 0.
- minimum_
password_ intlength Minimal required length of password for a user. Valid value range: [8-32]. Default to 12.
- password_
reuse_ intprevention User is not allowed to use the latest number of passwords specified in this parameter. A value of 0 indicates the password history check policy is disabled. Valid value range: [0-24]. Default to 0.
- require_
lowercase_ boolcharacters Specifies if the occurrence of a lowercase character in the password is mandatory. Default to true.
- require_
numbers bool Specifies if the occurrence of a number in the password is mandatory. Default to true.
- require_
symbols bool Specifies if the occurrence of a special character in the password is mandatory. Default to true.
- require_
uppercase_ boolcharacters Specifies if the occurrence of an uppercase character in the password is mandatory. Default to true.
- hard
Expiry Boolean Specifies if a password can expire in a hard way. Default to false.
- max
Login NumberAttempts Maximum logon attempts with an incorrect password within an hour. Valid value range: [0-32]. Default to 5.
- max
Password NumberAge The number of days after which password expires. A value of 0 indicates that the password never expires. Valid value range: [0-1095]. Default to 0.
- minimum
Password NumberLength Minimal required length of password for a user. Valid value range: [8-32]. Default to 12.
- password
Reuse NumberPrevention User is not allowed to use the latest number of passwords specified in this parameter. A value of 0 indicates the password history check policy is disabled. Valid value range: [0-24]. Default to 0.
- require
Lowercase BooleanCharacters Specifies if the occurrence of a lowercase character in the password is mandatory. Default to true.
- require
Numbers Boolean Specifies if the occurrence of a number in the password is mandatory. Default to true.
- require
Symbols Boolean Specifies if the occurrence of a special character in the password is mandatory. Default to true.
- require
Uppercase BooleanCharacters Specifies if the occurrence of an uppercase character in the password is mandatory. Default to true.
Outputs
All input properties are implicitly available as output properties. Additionally, the AccountPasswordPolicy 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 AccountPasswordPolicy Resource
Get an existing AccountPasswordPolicy 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?: AccountPasswordPolicyState, opts?: CustomResourceOptions): AccountPasswordPolicy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
hard_expiry: Optional[bool] = None,
max_login_attempts: Optional[int] = None,
max_password_age: Optional[int] = None,
minimum_password_length: Optional[int] = None,
password_reuse_prevention: Optional[int] = None,
require_lowercase_characters: Optional[bool] = None,
require_numbers: Optional[bool] = None,
require_symbols: Optional[bool] = None,
require_uppercase_characters: Optional[bool] = None) -> AccountPasswordPolicy
func GetAccountPasswordPolicy(ctx *Context, name string, id IDInput, state *AccountPasswordPolicyState, opts ...ResourceOption) (*AccountPasswordPolicy, error)
public static AccountPasswordPolicy Get(string name, Input<string> id, AccountPasswordPolicyState? state, CustomResourceOptions? opts = null)
public static AccountPasswordPolicy get(String name, Output<String> id, AccountPasswordPolicyState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Hard
Expiry bool Specifies if a password can expire in a hard way. Default to false.
- Max
Login intAttempts Maximum logon attempts with an incorrect password within an hour. Valid value range: [0-32]. Default to 5.
- Max
Password intAge The number of days after which password expires. A value of 0 indicates that the password never expires. Valid value range: [0-1095]. Default to 0.
- Minimum
Password intLength Minimal required length of password for a user. Valid value range: [8-32]. Default to 12.
- Password
Reuse intPrevention User is not allowed to use the latest number of passwords specified in this parameter. A value of 0 indicates the password history check policy is disabled. Valid value range: [0-24]. Default to 0.
- Require
Lowercase boolCharacters Specifies if the occurrence of a lowercase character in the password is mandatory. Default to true.
- Require
Numbers bool Specifies if the occurrence of a number in the password is mandatory. Default to true.
- Require
Symbols bool Specifies if the occurrence of a special character in the password is mandatory. Default to true.
- Require
Uppercase boolCharacters Specifies if the occurrence of an uppercase character in the password is mandatory. Default to true.
- Hard
Expiry bool Specifies if a password can expire in a hard way. Default to false.
- Max
Login intAttempts Maximum logon attempts with an incorrect password within an hour. Valid value range: [0-32]. Default to 5.
- Max
Password intAge The number of days after which password expires. A value of 0 indicates that the password never expires. Valid value range: [0-1095]. Default to 0.
- Minimum
Password intLength Minimal required length of password for a user. Valid value range: [8-32]. Default to 12.
- Password
Reuse intPrevention User is not allowed to use the latest number of passwords specified in this parameter. A value of 0 indicates the password history check policy is disabled. Valid value range: [0-24]. Default to 0.
- Require
Lowercase boolCharacters Specifies if the occurrence of a lowercase character in the password is mandatory. Default to true.
- Require
Numbers bool Specifies if the occurrence of a number in the password is mandatory. Default to true.
- Require
Symbols bool Specifies if the occurrence of a special character in the password is mandatory. Default to true.
- Require
Uppercase boolCharacters Specifies if the occurrence of an uppercase character in the password is mandatory. Default to true.
- hard
Expiry Boolean Specifies if a password can expire in a hard way. Default to false.
- max
Login IntegerAttempts Maximum logon attempts with an incorrect password within an hour. Valid value range: [0-32]. Default to 5.
- max
Password IntegerAge The number of days after which password expires. A value of 0 indicates that the password never expires. Valid value range: [0-1095]. Default to 0.
- minimum
Password IntegerLength Minimal required length of password for a user. Valid value range: [8-32]. Default to 12.
- password
Reuse IntegerPrevention User is not allowed to use the latest number of passwords specified in this parameter. A value of 0 indicates the password history check policy is disabled. Valid value range: [0-24]. Default to 0.
- require
Lowercase BooleanCharacters Specifies if the occurrence of a lowercase character in the password is mandatory. Default to true.
- require
Numbers Boolean Specifies if the occurrence of a number in the password is mandatory. Default to true.
- require
Symbols Boolean Specifies if the occurrence of a special character in the password is mandatory. Default to true.
- require
Uppercase BooleanCharacters Specifies if the occurrence of an uppercase character in the password is mandatory. Default to true.
- hard
Expiry boolean Specifies if a password can expire in a hard way. Default to false.
- max
Login numberAttempts Maximum logon attempts with an incorrect password within an hour. Valid value range: [0-32]. Default to 5.
- max
Password numberAge The number of days after which password expires. A value of 0 indicates that the password never expires. Valid value range: [0-1095]. Default to 0.
- minimum
Password numberLength Minimal required length of password for a user. Valid value range: [8-32]. Default to 12.
- password
Reuse numberPrevention User is not allowed to use the latest number of passwords specified in this parameter. A value of 0 indicates the password history check policy is disabled. Valid value range: [0-24]. Default to 0.
- require
Lowercase booleanCharacters Specifies if the occurrence of a lowercase character in the password is mandatory. Default to true.
- require
Numbers boolean Specifies if the occurrence of a number in the password is mandatory. Default to true.
- require
Symbols boolean Specifies if the occurrence of a special character in the password is mandatory. Default to true.
- require
Uppercase booleanCharacters Specifies if the occurrence of an uppercase character in the password is mandatory. Default to true.
- hard_
expiry bool Specifies if a password can expire in a hard way. Default to false.
- max_
login_ intattempts Maximum logon attempts with an incorrect password within an hour. Valid value range: [0-32]. Default to 5.
- max_
password_ intage The number of days after which password expires. A value of 0 indicates that the password never expires. Valid value range: [0-1095]. Default to 0.
- minimum_
password_ intlength Minimal required length of password for a user. Valid value range: [8-32]. Default to 12.
- password_
reuse_ intprevention User is not allowed to use the latest number of passwords specified in this parameter. A value of 0 indicates the password history check policy is disabled. Valid value range: [0-24]. Default to 0.
- require_
lowercase_ boolcharacters Specifies if the occurrence of a lowercase character in the password is mandatory. Default to true.
- require_
numbers bool Specifies if the occurrence of a number in the password is mandatory. Default to true.
- require_
symbols bool Specifies if the occurrence of a special character in the password is mandatory. Default to true.
- require_
uppercase_ boolcharacters Specifies if the occurrence of an uppercase character in the password is mandatory. Default to true.
- hard
Expiry Boolean Specifies if a password can expire in a hard way. Default to false.
- max
Login NumberAttempts Maximum logon attempts with an incorrect password within an hour. Valid value range: [0-32]. Default to 5.
- max
Password NumberAge The number of days after which password expires. A value of 0 indicates that the password never expires. Valid value range: [0-1095]. Default to 0.
- minimum
Password NumberLength Minimal required length of password for a user. Valid value range: [8-32]. Default to 12.
- password
Reuse NumberPrevention User is not allowed to use the latest number of passwords specified in this parameter. A value of 0 indicates the password history check policy is disabled. Valid value range: [0-24]. Default to 0.
- require
Lowercase BooleanCharacters Specifies if the occurrence of a lowercase character in the password is mandatory. Default to true.
- require
Numbers Boolean Specifies if the occurrence of a number in the password is mandatory. Default to true.
- require
Symbols Boolean Specifies if the occurrence of a special character in the password is mandatory. Default to true.
- require
Uppercase BooleanCharacters Specifies if the occurrence of an uppercase character in the password is mandatory. Default to true.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
alicloud
Terraform Provider.