Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

a.  IAMFullAccess (AWS Managed Policy)
b.  AmazonEC2FullAccess (AWS Managed Policy)
c.  AmazonVPCFullAccess (AWS Managed Policy)
d.  AWSCloudFormationFullAccess (AWS Managed Policy)
e. A custom policy - EKSFullAccess as per details below

Info

Custom Policy to be created per given JSON

EKSFullAccess (Managed Policy)
{

    "Version": "2012-10-17",

    "Statement": [

        {

            "Sid": "VisualEditor0",

            "Effect": "Allow",

            "Action": "eks:*",

            "Resource": "*"

        }

    ]

}

...