From 5262750a582d954157de5d1fdbc11901aa906c25 Mon Sep 17 00:00:00 2001 From: Mike Morris Date: Fri, 28 Aug 2015 12:39:50 -0400 Subject: merge node travis build user into cloudformation/travis.template --- cloudformation/travis.template | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'cloudformation') diff --git a/cloudformation/travis.template b/cloudformation/travis.template index 9351501052..4e7a0c7519 100644 --- a/cloudformation/travis.template +++ b/cloudformation/travis.template @@ -84,6 +84,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": { -- cgit v1.2.1