-
Notifications
You must be signed in to change notification settings - Fork 3
/
IAMAccount.template
80 lines (80 loc) · 2.57 KB
/
IAMAccount.template
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "Provisions the IAM Account with the groups, policies, and roles needed.",
"Parameters" : {
"IAMUser" : {
"Type" : "String",
"Default" : "IAMUser",
"Description" : "Add one IAM user to admin group."
},
"ManagedAccount" : {
"Type" : "String",
"Default" : "111111111111",
"Description" : "Define One Managed Account number."
},
"Prefix" : {
"Type" : "String",
"Default" : "mac",
"Description" : "Enter the prefix for the service role."
}
},
"Resources": {
"MacGroup": {
"Type": "AWS::IAM::Group",
"Properties": {
"GroupName": {
"Fn::Join": [
"-", [
{
"Ref": "Prefix"
},
"admins"
]
]
},
"Path": "/",
"Policies" : [ {
"PolicyName": {
"Fn::Join": [
"-", [
{
"Ref": "Prefix"
},
"assumerole"
]
]
},
"PolicyDocument" : {
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": "sts:AssumeRole",
"Resource": [
"Fn::Join" : [ ":", [ "arn", "aws", "iam","", "Ref": "ManagedAccount","Fn::Join" : [ "/", [ "role", "Fn::Join" : [ "-", [ "Ref": "Prefix","service"] ]] ]] ]
]
}
] }
} ]
}
},
"addUserToGroup" : {
"Type" : "AWS::IAM::UserToGroupAddition",
"Properties" : {
"GroupName" : {
"Fn::Join": [
"", [
{
"Ref": "Prefix"
},
"-admins"
]
]
},
"Users" : [ "Ref": "IAMUser" ]
},
"DependsOn" : "MacGroup"
}
}
}