-
Notifications
You must be signed in to change notification settings - Fork 0
/
sc-portfolio-rds.json
201 lines (199 loc) · 7.94 KB
/
sc-portfolio-rds.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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "RDS Portfolio for Service Catalog. (fdp-1p4dlgcoa)",
"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 RDS Reference Architecture"
},
"PortfolioDescription": {
"Type":"String",
"Description":"Portfolio Description",
"Default":"Service Catalog Portfolio that contains reference architecture products for Amazon Relational Database Service (RDS)."
},
"LaunchRoleName": {
"Type":"String",
"Description":"Name of the launch constraint role for RDS 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": {
"SCRDSportfolio": {
"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":"SCRDSportfolio"},
"PrincipalType" : "IAM"
}
},
"addrole2":{
"Type" : "AWS::ServiceCatalog::PortfolioPrincipalAssociation",
"Condition":"CondLinkRole2",
"Properties" : {
"PrincipalARN" : {"Fn::Sub": "arn:aws:iam::${AWS::AccountId}:role/${LinkedRole2}" },
"PortfolioId" : {"Ref":"SCRDSportfolio"},
"PrincipalType" : "IAM"
}
},
"LaunchConstraintRole": {
"Type" : "AWS::CloudFormation::Stack",
"Condition":"CreateLaunchConstraint",
"Properties" : {
"TemplateURL" : {"Fn::Sub": "${RepoRootURL}iam/sc-rds-launchrole.yml"},
"TimeoutInMinutes" : 5
}
},
"rdsmariaproduct": {
"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":"SCRDSportfolio"},
"RepoRootURL":{"Ref":"RepoRootURL"}
},
"TemplateURL" : {"Fn::Sub": "${RepoRootURL}rds/sc-product-rds-mariadb.json"},
"TimeoutInMinutes" : 5
}
},
"rdsmysqlproduct": {
"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":"SCRDSportfolio"},
"RepoRootURL":{"Ref":"RepoRootURL"}
},
"TemplateURL" : {"Fn::Sub": "${RepoRootURL}rds/sc-product-rds-mysql.json"},
"TimeoutInMinutes" : 5
}
},
"rdsmssqlproduct": {
"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":"SCRDSportfolio"},
"RepoRootURL":{"Ref":"RepoRootURL"}
},
"TemplateURL" : {"Fn::Sub": "${RepoRootURL}rds/sc-product-rds-mssql.json"},
"TimeoutInMinutes" : 5
}
},
"rdspostgresproduct": {
"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":"SCRDSportfolio"},
"RepoRootURL":{"Ref":"RepoRootURL"}
},
"TemplateURL" : {"Fn::Sub": "${RepoRootURL}rds/sc-product-rds-postgresql.json"},
"TimeoutInMinutes" : 5
}
},
"rdsauroraproduct": {
"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":"SCRDSportfolio"},
"RepoRootURL":{"Ref":"RepoRootURL"}
},
"TemplateURL" : {"Fn::Sub": "${RepoRootURL}aurora/sc-product-rds-aurora.json"},
"TimeoutInMinutes" : 5
}
}
}
}