Account Password Policy Args
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
Constructors
Properties
Whether to allow users to change their own password
Whether users are prevented from setting a new password after their password has expired (i.e., require administrator reset)
The number of days that an user password is valid.
Minimum length to require for user passwords.
The number of previous passwords that users are prevented from reusing.
Whether to require lowercase characters for user passwords.
Whether to require numbers for user passwords.
Whether to require symbols for user passwords.
Whether to require uppercase characters for user passwords.