-
Notifications
You must be signed in to change notification settings - Fork 0
/
sc-portfolio-vpc.json
185 lines (184 loc) · 7.1 KB
/
sc-portfolio-vpc.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "VPC Portfolio for Service Catalog. (fdp-1p4da46pn)",
"Metadata": {
"AWS::CloudFormation::Interface": {
"ParameterGroups": [
{
"Label": {
"default": "Portfolio Information"
},
"Parameters": [
"PortfolioName",
"PortfolioProvider",
"PortfolioDescription"
]
},
{
"Label": {
"default": "IAM Settings"
},
"Parameters": [
"LaunchRoleName",
"LinkedRole1",
"LinkedRole2",
"CreateEndUsers"
]
} ,
{
"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 VPC Reference Architecture"
},
"PortfolioDescription": {
"Type":"String",
"Description":"Portfolio Description",
"Default":"Service Catalog Portfolio that contains reference architecture products for Amazon Virtual Private Cloud."
},
"LaunchRoleName": {
"Type":"String",
"Description":"Name of the launch constraint role for VPC 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/"
},
"CreateEndUsers":{
"Type":"String",
"Description":"Select Yes to Create the ServiceCatalogEndusers IAM group. No if you have already created the group",
"AllowedValues": ["Yes","No"],
"Default":"Yes"
}
},
"Conditions":{
"CreateLaunchConstraint" : {"Fn::Equals" : [{"Ref" : "LaunchRoleName"}, ""]},
"CondCreateEndUsers" : {"Fn::Equals" : [{"Ref" : "CreateEndUsers"}, "Yes"]},
"CondLinkRole1" : {"Fn::Not" : [ {"Fn::Equals" : [{"Ref" : "LinkedRole1"}, ""]} ]},
"CondLinkRole2" : {"Fn::Not" : [ {"Fn::Equals" : [{"Ref" : "LinkedRole2"}, ""]} ]}
},
"Resources": {
"SCVPCportfolio": {
"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":"SCVPCportfolio"},
"PrincipalType" : "IAM"
}
},
"addrole2":{
"Type" : "AWS::ServiceCatalog::PortfolioPrincipalAssociation",
"Condition":"CondLinkRole2",
"Properties" : {
"PrincipalARN" : {"Fn::Sub": "arn:aws:iam::${AWS::AccountId}:role/${LinkedRole2}" },
"PortfolioId" : {"Ref":"SCVPCportfolio"},
"PrincipalType" : "IAM"
}
},
"stackServiceCatalogEndusers": {
"Type" : "AWS::CloudFormation::Stack",
"Condition":"CondCreateEndUsers",
"Properties" : {
"TemplateURL" : {"Fn::Sub": "${RepoRootURL}iam/sc-enduser-iam.yml"},
"TimeoutInMinutes" : 5
}
},
"LinkEndusersRole":{
"Type" : "AWS::ServiceCatalog::PortfolioPrincipalAssociation",
"Properties" : {
"PrincipalARN" :
{"Fn::If" : [
"CondCreateEndUsers",
{"Fn::GetAtt":["stackServiceCatalogEndusers","Outputs.EndUserRoleArn"]},
{"Fn::Sub": "arn:aws:iam::${AWS::AccountId}:role/ServiceCatalogEndusers" }
]},
"PortfolioId" : {"Ref":"SCVPCportfolio"},
"PrincipalType" : "IAM"
}
},
"LinkEndusersGroup":{
"Type" : "AWS::ServiceCatalog::PortfolioPrincipalAssociation",
"Properties" : {
"PrincipalARN" :
{"Fn::If" : [
"CondCreateEndUsers",
{"Fn::GetAtt":["stackServiceCatalogEndusers","Outputs.EndUserGroupArn"]},
{"Fn::Sub": "arn:aws:iam::${AWS::AccountId}:group/ServiceCatalogEndusers" }
]},
"PortfolioId" : {"Ref":"SCVPCportfolio"},
"PrincipalType" : "IAM"
}
},
"LaunchConstraintRole": {
"Type" : "AWS::CloudFormation::Stack",
"Condition":"CreateLaunchConstraint",
"Properties" : {
"TemplateURL" : {"Fn::Sub": "${RepoRootURL}iam/sc-ec2vpc-launchrole.yml"},
"TimeoutInMinutes" : 5
}
},
"vpcproduct": {
"Type" : "AWS::CloudFormation::Stack",
"Properties" : {
"Parameters" : {
"PortfolioProvider": {"Ref":"PortfolioProvider"},
"LaunchConstraintRole": {"Fn::If" : [
"CreateLaunchConstraint",
{"Fn::GetAtt":["LaunchConstraintRole","Outputs.LaunchRoleName"]},
{"Ref": "LaunchRoleName"}
]},
"PortfolioId":{"Ref":"SCVPCportfolio"},
"RepoRootURL":{"Ref":"RepoRootURL"}
},
"TemplateURL" : {"Fn::Sub": "${RepoRootURL}vpc/sc-product-vpc.json"},
"TimeoutInMinutes" : 5
}
}
},
"Outputs": {
"LaunchConstraintRoleARN":{
"Condition":"CreateLaunchConstraint",
"Value": { "Fn::GetAtt":["LaunchConstraintRole", "Outputs.LaunchRoleArn"] }
},
"LaunchConstraintRoleName":{
"Condition":"CreateLaunchConstraint",
"Value": { "Fn::GetAtt":["LaunchConstraintRole", "Outputs.LaunchRoleName"] }
},
"vpcproductId":{"Value": { "Fn::GetAtt":["vpcproduct","Outputs.ProductId"]} }
}
}