house9

random code and what not

AWS IAM policy for uploading SSL certificates

| Comments

The following IAM policy can be used to upload SSL certificates to AWS for use by cloudfront or ELB.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "iam:DeleteServerCertificate",
        "iam:UploadServerCertificate",
        "iam:ListServerCertificates",
        "iam:GetServerCertificate"
      ],
      "Resource": "*"
    }
  ]
}

This policy gives full access to certificate management and nothing else.

Resources

Comments