diff options
author | Chris Krelle <nobodycam@gmail.com> | 2013-07-04 07:42:52 -0700 |
---|---|---|
committer | Chris Krelle <nobodycam@gmail.com> | 2013-07-06 08:33:55 -0700 |
commit | 0c5bd2fc23f77c72da73f2d9b7baec4b0edfac6a (patch) | |
tree | 35fe99e114e4787f1dcff8cd5e141520a6a098e8 | |
parent | 7633278ba440465be79e17bf05b85b2a4a75d0b5 (diff) |
Update nagios3.yaml to reflect changes to the postfix element.
Recent changes to the postfix element added new parameters so
the nagios3 template needed to updated to ensure postfix works
as expected.
Change-Id: I0a9eb8e0988470888f35adcc426ccd314f93b301
Authored-by: Chris Krelle <nobodycam@gmail.com>
-rw-r--r-- | nagios3.yaml | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/nagios3.yaml b/nagios3.yaml index 6d86ebbf..4f6a4222 100644 --- a/nagios3.yaml +++ b/nagios3.yaml @@ -47,6 +47,18 @@ Parameters: Type: String Default: | ----- BEGIN PlaceHolder... + PostfixMailHostname: + Description: Hostname for postfix.. + Type: String + Default: nagios3-nagios3 + PostfixMailDomain: + Description: Top level domain for postfix. + Type: String + Default: novalocal + PostfixDelayWarningTime: + Description: Amount of time to Delay warnnings. + Type: String + Default: 4h Resources: nagios3: Metadata: @@ -69,6 +81,13 @@ Resources: Ref: NovaOsTenantName initial_network_split_key: Ref: InitialIpSplitKey + postfix: + mailhostname: + Ref: PostfixMailHostname + maildomain: + Ref: PostfixMailDomain + delay_warning_time: + Ref: PostfixDelayWarningTime Type: AWS::EC2::Instance Properties: KeyName: @@ -78,4 +97,4 @@ Resources: InstanceType: {Ref: InstanceType} Outputs: Nagios3Host: - Fn::GetAtt: [ nagios3 , PrivateIp ]
\ No newline at end of file + Fn::GetAtt: [ nagios3 , PrivateIp ] |