AWS - CloudFormation - Abilita MFA

1

C'è un modo di utilizzare la formazione di cloud per far rispettare MFA sugli account utente in AWS:

Ho il seguente codice di formazione cloud:

{
    "AWSTemplateFormatVersion": "2010-09-09"

    "Description": "Security Cloud Formation Template",

{
  "Resources": {
      "Type": "AWS::IAM::Policy",
      "Properties": {
      "Users" : [*],
      "Action"   : [

      ]
      }
  }
}

Non riesco a trovare un'azione (nell'elenco AWS) o in grado di applicare un modo per applicare MFA su un account.

    
posta Pacey87 01.06.2016 - 13:18
fonte

1 risposta

2

Sì, puoi farlo.

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "AllowUsersToCreateEnableResyncDeleteTheirOwnVirtualMFADevice",
      "Effect": "Allow",
      "Action": [
        "iam:CreateVirtualMFADevice",
        "iam:EnableMFADevice",
        "iam:ResyncMFADevice",
        "iam:DeleteVirtualMFADevice"
      ],
      "Resource": [
        "arn:aws:iam::account-id-without-hyphens:mfa/${aws:username}",
        "arn:aws:iam::account-id-without-hyphens:user/${aws:username}"
      ]
    },
    {
      "Sid": "AllowUsersToDeactivateTheirOwnVirtualMFADevice",
      "Effect": "Allow",
      "Action": [
        "iam:DeactivateMFADevice"
      ],
      "Resource": [
        "arn:aws:iam::account-id-without-hyphens:mfa/${aws:username}",
        "arn:aws:iam::account-id-without-hyphens:user/${aws:username}"
      ],
      "Condition": {
        "Bool": {
          "aws:MultiFactorAuthPresent": true
        }
      }
    },
    {
      "Sid": "AllowUsersToListMFADevicesandUsersForConsole",
      "Effect": "Allow",
      "Action": [
        "iam:ListMFADevices",
        "iam:ListVirtualMFADevices",
        "iam:ListUsers"
      ],
      "Resource": "*"
    }
  ]
}

link

    
risposta data 28.09.2016 - 19:28
fonte

Leggi altre domande sui tag