diff options
author | Mike Morris <michael.patrick.morris@gmail.com> | 2015-08-21 15:53:24 -0400 |
---|---|---|
committer | Mike Morris <michael.patrick.morris@gmail.com> | 2015-08-21 16:22:04 -0400 |
commit | 6e6387e089d2f8cf998f6726fec8eef25028627f (patch) | |
tree | 2abf4da384fa29f7c64cd3773a0afa432ef9b71a /cloudformation | |
parent | a8d9b921d71a91d7f8eff82e5a584aaab8b7d1c6 (diff) | |
download | qtlocation-mapboxgl-6e6387e089d2f8cf998f6726fec8eef25028627f.tar.gz |
move node-mbgl to platform/node/ directory
Diffstat (limited to 'cloudformation')
-rw-r--r-- | cloudformation/travis.template | 114 |
1 files changed, 0 insertions, 114 deletions
diff --git a/cloudformation/travis.template b/cloudformation/travis.template deleted file mode 100644 index 3ba9b9625e..0000000000 --- a/cloudformation/travis.template +++ /dev/null @@ -1,114 +0,0 @@ - -{ - "AWSTemplateFormatVersion": "2010-09-09", - "Description": "node-mapbox-gl-native travis resources", - "Resources": { - "BuildUser": { - "Type": "AWS::IAM::User", - "Properties": { - "Policies": [ - { - "PolicyName": "build", - "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": "list", - "PolicyDocument": { - "Statement": [ - { - "Action": [ - "s3:ListBucket" - ], - "Resource": [ - "arn:aws:s3:::mapbox-node-binary" - ], - "Effect": "Allow" - } - ] - } - }, - { - "PolicyName": "build-testing", - "PolicyDocument": { - "Statement": [ - { - "Action": [ - "s3:DeleteObject", - "s3:GetObject", - "s3:GetObjectAcl", - "s3:PutObject", - "s3:PutObjectAcl" - ], - "Effect": "Allow", - "Resource": [ - "arn:aws:s3:::mapbox/node-mapbox-gl-native/*" - ] - } - ] - } - }, - { - "PolicyName": "list-testing", - "PolicyDocument": { - "Statement": [ - { - "Action": [ - "s3:ListBucket" - ], - "Effect": "Allow", - "Resource": [ - "arn:aws:s3:::mapbox" - ], - "Condition": { - "StringLike": { - "s3:prefix": "node-mapbox-gl-native/*" - } - } - } - ] - } - } - ] - } - }, - "BuildUserKey": { - "Type": "AWS::IAM::AccessKey", - "Properties": { - "UserName": { - "Ref": "BuildUser" - } - } - } - }, - "Outputs": { - "AccessKeyId": { - "Value": { - "Ref": "BuildUserKey" - } - }, - "SecretAccessKey": { - "Value": { - "Fn::GetAtt": [ - "BuildUserKey", - "SecretAccessKey" - ] - } - } - } -} |