1
0
mirror of https://github.com/openshift/openshift-ansible-contrib.git synced 2026-02-05 09:45:58 +01:00
Files
openshift-ansible-contrib/reference-architecture/3.9/playbooks/roles/aws/templates/iam_policy_s3user.json.j2

17 lines
384 B
Django/Jinja

{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"s3:*"
],
"Resource": [
"arn:aws:s3:::{{ clusterid }}.{{ dns_domain }}-registry",
"arn:aws:s3:::{{ clusterid }}.{{ dns_domain }}-registry/*"
],
"Effect": "Allow",
"Sid": "1"
}
]
}