Creating an Access Policy
- Go to https://console.aws.amazon.com/iam/home and login to your AWS account
- Click on the “Policies” button when you are logged into IAM
Click on Create Policy
Select “JSON” type policy
Copy-paste this codeblock into the text editor
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "gamelift:*",
"Resource": "*"
}
]
}