FIAM-TRUST-TrustPolicy-MFARequired.json 303 B

1234567891011121314151617
  1. {
  2. "Version": "2012-10-17",
  3. "Statement": [
  4. {
  5. "Effect": "Allow",
  6. "Principal": {
  7. "AWS": "arn:aws:iam::${account}:root"
  8. },
  9. "Action": "sts:AssumeRole",
  10. "Condition": {
  11. "Bool": {
  12. "aws:MultiFactorAuthPresent": "true"
  13. }
  14. }
  15. }
  16. ]
  17. }