-
Notifications
You must be signed in to change notification settings - Fork 229
/
Copy pathsc-product-cloud9.json
53 lines (53 loc) · 1.86 KB
/
sc-product-cloud9.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
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "Cloud9 ServiceCatalog product. (fdp-1qj64b3cq)",
"Parameters":
{
"PortfolioProvider": {
"Type":"String",
"Description":"Provider Name"
},
"PortfolioId":{
"Type":"String",
"Description":"The SC portfolio this product will be attached to."
},
"RepoRootURL": {
"Type":"String",
"Description":"Root url for the repo containing the product templates."
}
},
"Resources": {
"Cloud9Product": {
"Type": "AWS::ServiceCatalog::CloudFormationProduct",
"Properties": {
"Name": "AWS Cloud9 IDE",
"Description": "This product provisions one Cloud9 Developer IDE instance.",
"Owner": {"Ref":"PortfolioProvider"},
"Distributor": {"Ref":"PortfolioProvider"},
"SupportDescription": "Operations Team",
"SupportEmail": "[email protected]",
"AcceptLanguage": "en",
"SupportUrl": "http://helpdesk.yourcompany.com",
"ProvisioningArtifactParameters": [
{
"Description": "v1.0",
"Info": {
"LoadTemplateFromURL": {"Fn::Sub": "${RepoRootURL}codepipeline/sc-cloud9.json"}
},
"Name": "Cloud9 IDE"
}
]
}
},
"Associatenginxcf":{
"Type" : "AWS::ServiceCatalog::PortfolioProductAssociation",
"Properties" : {
"PortfolioId" : {"Ref":"PortfolioId"},
"ProductId" : {"Ref":"Cloud9Product"}
}
}
},
"Outputs": {
"ProductId":{"Value": { "Ref":"Cloud9Product" } }
}
}