-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathTemplate_topics.json
More file actions
111 lines (95 loc) · 2.3 KB
/
Template_topics.json
File metadata and controls
111 lines (95 loc) · 2.3 KB
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
{
"Parameters" : {
"NagiosSNSprodA" : {
"Default": "https://nagios.fas.harvard.edu/aws_sns_receiver.php",
"Description": "Nagios Primary Prod SNS HTTPS endpoint",
"Type": "String"
},
"NagiosSNSprodB" : {
"Default": "https://palantir2.unix.fas.harvard.edu/aws_sns_receiver.php",
"Description": "Nagios Alternate Prod SNS HTTPS endpoint",
"Type": "String"
},
"AWSSupportList" : {
"Default": "aws-support@mailman.fas.harvard.edu",
"Description": "AWS email list for HUIT internal support issues",
"Type": "String"
}
},
"Resources" : {
"HUITNagiosCritical" : {
"Type" : "AWS::SNS::Topic",
"Properties" : {
"Subscription" : [
{ "Endpoint" :
{ "Ref" : "NagiosSNSprodA" },
"Protocol" : "https"
},
{ "Endpoint" :
{ "Ref" : "NagiosSNSprodB" },
"Protocol" : "https"
},
{ "Endpoint" :
{ "Ref" : "AWSSupportList" },
"Protocol" : "email"
}
],
"TopicName" : "HUIT_Nagios_Critical"
}
},
"HUITNagiosHigh" : {
"Type" : "AWS::SNS::Topic",
"Properties" : {
"Subscription" : [
{ "Endpoint" :
{ "Ref" : "NagiosSNSprodA" },
"Protocol" : "https"
},
{ "Endpoint" :
{ "Ref" : "NagiosSNSprodB" },
"Protocol" : "https"
},
{ "Endpoint" :
{ "Ref" : "AWSSupportList" },
"Protocol" : "email"
}
],
"TopicName" : "HUIT_Nagios_High"
}
},
"HUITNagiosInformational" : {
"Type" : "AWS::SNS::Topic",
"Properties" : {
"Subscription" : [
{ "Endpoint" :
{ "Ref" : "NagiosSNSprodA" },
"Protocol" : "https"
},
{ "Endpoint" :
{ "Ref" : "NagiosSNSprodB" },
"Protocol" : "https"
},
{ "Endpoint" :
{ "Ref" : "AWSSupportList" },
"Protocol" : "email"
}
],
"TopicName" : "HUIT_Nagios_Informational"
}
}
},
"Outputs" : {
"SNSTopicNagiosCritical" : {
"Value" : { "Ref" : "HUITNagiosCritical" },
"Description" : "Drupal Website SNS Topic Nagios Critical"
},
"SNSTopicNagiosHigh" : {
"Value" : { "Ref" : "HUITNagiosHigh" },
"Description" : "Drupal Website SNS Topic Nagios High"
},
"SNSTopicNagiosInformational" : {
"Value" : { "Ref" : "HUITNagiosInformational" },
"Description" : "Drupal Website SNS Topic Nagios Informational"
}
}
}