diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2016-11-07 18:38:01 +0100 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2016-11-15 10:07:47 -0800 |
commit | 223a95a74fe4a67b97520a4d8ab6383114aa8abd (patch) | |
tree | 4427c03f1654682cd6c1a01d27f4456918611630 /cloudformation | |
parent | c78c97f346989524b84f90c4c72049f84d5346af (diff) | |
download | qtlocation-mapboxgl-223a95a74fe4a67b97520a4d8ab6383114aa8abd.tar.gz |
[build] add binary size logging to Linux Release builds
Diffstat (limited to 'cloudformation')
-rw-r--r-- | cloudformation/travis.template | 72 |
1 files changed, 36 insertions, 36 deletions
diff --git a/cloudformation/travis.template b/cloudformation/travis.template index b65093907c..b2cf2d559b 100644 --- a/cloudformation/travis.template +++ b/cloudformation/travis.template @@ -8,42 +8,6 @@ "Properties": { "Policies": [ { - "PolicyName": "list-testing-old", - "PolicyDocument": { - "Statement": [ - { - "Action": [ - "s3:ListBucket" - ], - "Effect": "Allow", - "Resource": [ - "arn:aws:s3:::mapbox-gl-testing" - ] - } - ] - } - }, - { - "PolicyName": "build-testing-old", - "PolicyDocument": { - "Statement": [ - { - "Action": [ - "s3:DeleteObject", - "s3:GetObject", - "s3:GetObjectAcl", - "s3:PutObject", - "s3:PutObjectAcl" - ], - "Effect": "Allow", - "Resource": [ - "arn:aws:s3:::mapbox-gl-testing/*" - ] - } - ] - } - }, - { "PolicyName": "list-testing", "PolicyDocument": { "Statement": [ @@ -148,6 +112,24 @@ } ] } + }, + { + "PolicyName": "cloudwatch-metrics", + "PolicyDocument": { + "Statement": [ + { + "Action": [ + "cloudwatch:PutMetricData", + "cloudwatch:GetMetricData", + "cloudwatch:GetMetricStatistics" + ], + "Effect": "Allow", + "Resource": [ + "*" + ] + } + ] + } } ] } @@ -179,6 +161,24 @@ } ] } + }, + { + "PolicyName": "cloudwatch-metrics", + "PolicyDocument": { + "Statement": [ + { + "Action": [ + "cloudwatch:PutMetricData", + "cloudwatch:GetMetricData", + "cloudwatch:GetMetricStatistics" + ], + "Effect": "Allow", + "Resource": [ + "*" + ] + } + ] + } } ] } |