-
Notifications
You must be signed in to change notification settings - Fork 227
/
Copy pathsc-portfolio-emr.json
150 lines (148 loc) · 5.67 KB
/
sc-portfolio-emr.json
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "EMR Portfolio for Service Catalog. (fdp-1p4dlgcns)",
"Metadata": {
"AWS::CloudFormation::Interface": {
"ParameterGroups": [
{
"Label": {
"default": "Portfolio Information"
},
"Parameters": [
"PortfolioName",
"PortfolioProvider",
"PortfolioDescription"
]
},
{
"Label": {
"default": "IAM Settings"
},
"Parameters": [
"LaunchRoleName",
"LinkedRole1",
"LinkedRole2"
]
} ,
{
"Label": {
"default": "Product Settings"
},
"Parameters": [
"RepoRootURL"
]
}
]
}
},
"Parameters":
{
"PortfolioProvider": {
"Type":"String",
"Description":"Provider Name",
"Default":"IT Services"
},
"PortfolioName": {
"Type":"String",
"Description":"Portfolio Name",
"Default":"Service Catalog EMR Reference Architecture"
},
"PortfolioDescription": {
"Type":"String",
"Description":"Portfolio Description",
"Default":"Service Catalog Portfolio that contains reference architecture products for Amazon Elastic MapReduce (EMR)."
},
"LaunchRoleName": {
"Type":"String",
"Description":"Name of the launch constraint role for EMR products. leave this blank to create the role."
},
"LinkedRole1": {
"Type":"String",
"Description":"(Optional) The name of a role which can execute products in this portfolio."
},
"LinkedRole2": {
"Type":"String",
"Description":"(Optional) The name of a second role which can execute products in this portfolio."
},
"RepoRootURL": {
"Type":"String",
"Description":"Root url for the repo containing the product templates.",
"Default":"https://s3.amazonaws.com/aws-service-catalog-reference-architectures/"
}
},
"Conditions":{
"CreateLaunchConstraint" : {"Fn::Equals" : [{"Ref" : "LaunchRoleName"}, ""]},
"CondLinkRole1" : {"Fn::Not" : [ {"Fn::Equals" : [{"Ref" : "LinkedRole1"}, ""]} ]},
"CondLinkRole2" : {"Fn::Not" : [ {"Fn::Equals" : [{"Ref" : "LinkedRole2"}, ""]} ]}
},
"Resources": {
"SCEMRportfolio": {
"Type" : "AWS::ServiceCatalog::Portfolio",
"Properties" : {
"ProviderName": {"Ref":"PortfolioProvider"},
"Description" : {"Ref":"PortfolioDescription"},
"DisplayName" : {"Ref":"PortfolioName"}
}
},
"addrole1":{
"Type" : "AWS::ServiceCatalog::PortfolioPrincipalAssociation",
"Condition":"CondLinkRole1",
"Properties" : {
"PrincipalARN" : {"Fn::Sub": "arn:aws:iam::${AWS::AccountId}:role/${LinkedRole1}"},
"PortfolioId" : {"Ref":"SCEMRportfolio"},
"PrincipalType" : "IAM"
}
},
"addrole2":{
"Type" : "AWS::ServiceCatalog::PortfolioPrincipalAssociation",
"Condition":"CondLinkRole2",
"Properties" : {
"PrincipalARN" : {"Fn::Sub": "arn:aws:iam::${AWS::AccountId}:role/${LinkedRole2}" },
"PortfolioId" : {"Ref":"SCEMRportfolio"},
"PrincipalType" : "IAM"
}
},
"LaunchConstraintRole": {
"Type" : "AWS::CloudFormation::Stack",
"Condition":"CreateLaunchConstraint",
"Properties" : {
"TemplateURL" : {"Fn::Sub": "${RepoRootURL}iam/sc-emr-launchrole.yml"},
"TimeoutInMinutes" : 5
}
},
"emrproduct": {
"Type" : "AWS::CloudFormation::Stack",
"Properties" : {
"Parameters" : {
"PortfolioProvider": {"Ref":"PortfolioProvider"},
"LaunchConstraintARN": {"Fn::If" : [
"CreateLaunchConstraint",
{"Fn::GetAtt":["LaunchConstraintRole","Outputs.LaunchRoleArn"]},
{"Fn::Sub": "arn:aws:iam::${AWS::AccountId}:role/${LaunchRoleName}"}
]},
"PortfolioId":{"Ref":"SCEMRportfolio"},
"RepoRootURL":{"Ref":"RepoRootURL"}
},
"TemplateURL" : {"Fn::Sub": "${RepoRootURL}emr/sc-product-emr.json"},
"TimeoutInMinutes" : 5
}
},
"emrsparkhbaseproduct": {
"Type" : "AWS::CloudFormation::Stack",
"Properties" : {
"Parameters" : {
"PortfolioProvider": {"Ref":"PortfolioProvider"},
"LaunchConstraintARN": {"Fn::If" : [
"CreateLaunchConstraint",
{"Fn::GetAtt":["LaunchConstraintRole","Outputs.LaunchRoleArn"]},
{"Fn::Sub": "arn:aws:iam::${AWS::AccountId}:role/${LaunchRoleName}"}
]},
"PortfolioId":{"Ref":"SCEMRportfolio"},
"RepoRootURL":{"Ref":"RepoRootURL"}
},
"TemplateURL" : {"Fn::Sub": "${RepoRootURL}emr/sc-product-emrsparkhbase.json"},
"TimeoutInMinutes" : 5
}
}
}
}