AccountPasswordPolicy

class AccountPasswordPolicy : KotlinCustomResource

Note: There is only a single policy allowed per AWS account. An existing policy will be lost when using this resource as an effect of this limitation. Manages Password Policy for the AWS Account. See more about Account Password Policy in the official AWS docs.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.iam.AccountPasswordPolicy;
import com.pulumi.aws.iam.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 strict = new AccountPasswordPolicy("strict", AccountPasswordPolicyArgs.builder()
.allowUsersToChangePassword(true)
.minimumPasswordLength(8)
.requireLowercaseCharacters(true)
.requireNumbers(true)
.requireSymbols(true)
.requireUppercaseCharacters(true)
.build());
}
}

Import

IAM Account Password Policy can be imported using the word iam-account-password-policy, e.g.,

$ pulumi import aws:iam/accountPasswordPolicy:AccountPasswordPolicy strict iam-account-password-policy

Properties

Link copied to clipboard

Whether to allow users to change their own password

Link copied to clipboard

Indicates whether passwords in the account expire. Returns true if max_password_age contains a value greater than 0. Returns false if it is 0 or not present.

Link copied to clipboard
val hardExpiry: Output<Boolean>

Whether users are prevented from setting a new password after their password has expired (i.e., require administrator reset)

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val maxPasswordAge: Output<Int>

The number of days that an user password is valid.

Link copied to clipboard

Minimum length to require for user passwords.

Link copied to clipboard

The number of previous passwords that users are prevented from reusing.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Whether to require lowercase characters for user passwords.

Link copied to clipboard
val requireNumbers: Output<Boolean>

Whether to require numbers for user passwords.

Link copied to clipboard
val requireSymbols: Output<Boolean>

Whether to require symbols for user passwords.

Link copied to clipboard

Whether to require uppercase characters for user passwords.

Link copied to clipboard
val urn: Output<String>