Skip to content
Darth Bane edited this page May 24, 2025 · 1 revision

Buckets

  • etcd-backups
  • argo-workflows

Policies

Generic policy for K8s to be able to access all buckets

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "FullAccessTok8s",
            "Effect": "Allow",
            "Action": [
                "s3:PutObject",
                "s3:DeleteObject",
                "s3:GetObject",
                "s3:ListBucket"
            ],
            "Resource": [
                "arn:aws:s3:::argo-workflows/*",
                "arn:aws:s3:::etcd-backups",
                "arn:aws:s3:::etcd-backups/*",
                "arn:aws:s3:::argo-workflows"
            ]
        }
    ]
}

Accounts

Single service account with access key

Clone this wiki locally