DEV Community

Rodrigo Fernandes
Rodrigo Fernandes

Posted on

AWS IAM - Role - Cross Account

Anotações sobre o AWS IAM Role - Cross Account 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

  • Criar o Assume-Role nas contas de destino

Exemplo IAM Policy

{
  "Version": "2012-10-17",
  "Statement": {
    "Effect": "Allow",
    "Action": "sts:AssumeRole",
    "Resource": "arn:aws:iam::PRODUCTION-ACCOUNT-ID:role/UpdateApp"
  }
}
Enter fullscreen mode Exit fullscreen mode

Referências

Image of Datadog

The Future of AI, LLMs, and Observability on Google Cloud

Datadog sat down with Google’s Director of AI to discuss the current and future states of AI, ML, and LLMs on Google Cloud. Discover 7 key insights for technical leaders, covering everything from upskilling teams to observability best practices

Learn More

Top comments (0)