-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtemplate-dist
More file actions
36 lines (35 loc) · 772 Bytes
/
template-dist
File metadata and controls
36 lines (35 loc) · 772 Bytes
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
{
"AWSTemplateFormatVersion" : "2010-09-09",
"Description" : "Your description here",
"Parameters" : {
"ServiceName": {
"Description": "The name of the service this belongs to",
"Type": "String"
},
"TechnicalOwner": {
"Description": "A valid LDAP email",
"Type": "String"
},
"Environment": {
"Description": "Environment we are deploying into",
"Default": "sandbox",
"Type": "String",
"AllowedValues": [
"prod",
"dev",
"sandbox"
],
"ConstraintDescription": "Must specify prod, dev, or sandbox."
},
},
"Resources": {
},
"Outputs": {
"Resource": {
"Description": "Resource Id",
"Value": {
"Ref": "Resource"
}
}
}
}