-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathhost_keys.tf
52 lines (50 loc) · 1.21 KB
/
host_keys.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
resource "aws_iam_access_key" "host_keys" {
user = "${aws_iam_user.dcos.name}"
}
resource "aws_iam_user" "dcos" {
name = "dcos"
}
resource "aws_iam_user_policy" "dcos" {
name = "dcos"
user = "${aws_iam_user.dcos.name}"
policy = <<EOF
{
"Statement": [
{
"Resource": [
"arn:aws:s3:::${aws_s3_bucket.exhibitor.id}/*",
"arn:aws:s3:::${aws_s3_bucket.exhibitor.id}"
],
"Action": [
"s3:AbortMultipartUpload",
"s3:DeleteObject",
"s3:GetBucketAcl",
"s3:GetBucketPolicy",
"s3:GetObject",
"s3:GetObjectAcl",
"s3:ListBucket",
"s3:ListBucketMultipartUploads",
"s3:ListMultipartUploadParts",
"s3:PutObject",
"s3:PutObjectAcl"
],
"Effect": "Allow"
},
{
"Resource": "*",
"Action": [
"ec2:DescribeKeyPairs",
"ec2:DescribeSubnets",
"autoscaling:DescribeLaunchConfigurations",
"autoscaling:UpdateAutoScalingGroup",
"autoscaling:DescribeAutoScalingGroups",
"autoscaling:DescribeScalingActivities",
"elasticloadbalancing:DescribeLoadBalancers"
],
"Effect": "Allow"
}
],
"Version": "2012-10-17"
}
EOF
}