DEV Community

Rodrigo Fernandes
Rodrigo Fernandes

Posted on

AWS Artifact

Anotações sobre AWS Artifact para ajudar na preparação das certificações AWS.

Até o momento as anotações são para as certificações abaixo:

Image description

Anotações gerais

  • Acesso aos relatórios emitidos pelo auditor da AWS
  • ISO 9001:2015 Certification
  • HIPPA
  • PCI - Payment Card Industry (PCI - Setor de cartões de pagamento)
  • SOC - Service Organization Control (SOC - Controle de organização de serviço)
  • Não é um serviço AWS
  • Tem que ter permissões para acessar os relatórios

Identity and access management in AWS Artifact

Documentação oficial

Exemplo policy que libera todos os relatórios

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "artifact:Get"
            ],
            "Resource": [
                "arn:aws:artifact:::report-package/*"
            ]
        }
    ]
}
Enter fullscreen mode Exit fullscreen mode

Exemplo policy que libera os relatórios de SOC, PCI e ISO

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "artifact:Get"
            ],
            "Resource": [
                "arn:aws:artifact:::report-package/Certifications and Attestations/SOC/*",
                "arn:aws:artifact:::report-package/Certifications and Attestations/PCI/*",
                "arn:aws:artifact:::report-package/Certifications and Attestations/ISO/*"
            ]
        }
    ]
}
Enter fullscreen mode Exit fullscreen mode

PCI DSS

Documentação oficial

Top comments (0)