You must be logged in to view saved presets
This SCP restricts IAM principals from modifying existing IAM password policies in an AWS account with an exception for a specified Administrator IAM role.
See Related Configuration Items for a Configuration Package to deploy multiple SCPs to an AWS Account.
Configuration template includes a CloudFormation custom resource to deploy into an AWS account.
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"iam:DeleteAccountPasswordPolicy",
"iam:UpdateAccountPasswordPolicy"
],
"Resource": [
"*"
],
"Effect": "Deny",
"Condition": {
"StringNotEquals": {
"aws:PrincipalARN": "arn:aws:iam::*:role/"
}
}
}
]
}