diff options
author | Mike Morris <michael.patrick.morris@gmail.com> | 2015-08-28 12:39:50 -0400 |
---|---|---|
committer | Mike Morris <michael.patrick.morris@gmail.com> | 2015-08-28 12:39:50 -0400 |
commit | 5262750a582d954157de5d1fdbc11901aa906c25 (patch) | |
tree | 7bbaca4fdd1e9bd5953e5e93db1f2dbfc6726fbb /cloudformation | |
parent | b213766236e7ac8aefed6a41b247bca7c8ff2f9f (diff) | |
download | qtlocation-mapboxgl-5262750a582d954157de5d1fdbc11901aa906c25.tar.gz |
merge node travis build user into cloudformation/travis.template
Diffstat (limited to 'cloudformation')
-rw-r--r-- | cloudformation/travis.template | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/cloudformation/travis.template b/cloudformation/travis.template index 9351501052..4e7a0c7519 100644 --- a/cloudformation/travis.template +++ b/cloudformation/travis.template @@ -85,6 +85,42 @@ } }, { + "PolicyName": "list-node", + "PolicyDocument": { + "Statement": [ + { + "Action": [ + "s3:ListBucket" + ], + "Resource": [ + "arn:aws:s3:::mapbox-node-binary" + ], + "Effect": "Allow" + } + ] + } + }, + { + "PolicyName": "build-node", + "PolicyDocument": { + "Statement": [ + { + "Action": [ + "s3:DeleteObject", + "s3:GetObject", + "s3:GetObjectAcl", + "s3:PutObject", + "s3:PutObjectAcl" + ], + "Resource": [ + "arn:aws:s3:::mapbox-node-binary/mapbox-gl-native/*" + ], + "Effect": "Allow" + } + ] + } + }, + { "PolicyName": "android", "PolicyDocument": { "Statement": [ |