Răsfoiți Sursa

Bump Sensu module version in test

Duane Waddle 3 ani în urmă
părinte
comite
c0aafe5ad5

+ 20 - 0
prod/aws-us-gov/mdr-prod-c2/096-sensu-configuration/README.md

@@ -20,4 +20,24 @@ e!password
 `export SENSU_PASSWORD=e\!password`
 
 
+# AWS Secrets Manager Requirement
+
+To support email from sensu, we now need an AWS secrets manager secret
+available that has the SMTP host (mailrelay) information.
+
+In AWS secrets manager, a secret named "smtp/smtp_creds" needs to be
+IN THE C2 account.  The Secret value needs to be a key/value that
+encodes as JSON like:
+
+``
+{
+  "mail_from_domain": "xdrtest.accenturefederalcyber.com",
+  "mail_host": "mailrelay2.pvt.xdrtest.accenturefederalcyber.com",
+  "mail_user": "xdrtestpostfix@pvt.xdrtest.accenturefederalcyber.com",
+  "mail_password": "the_password_in_salt"
+}
+```
+
+If you don't set this up BEFORE trying to apply this terraform, a bad time
+will be had.
 

+ 1 - 1
test/aws-us-gov/mdr-test-c2/096-sensu-configuration/terragrunt.hcl

@@ -13,7 +13,7 @@ locals {
 # working directory, into a temporary folder, and execute your Terraform commands in that folder.
 terraform {
   # Double slash is intentional and required to show root of modules
-  source = "git@github.xdr.accenturefederalcyber.com:mdr-engineering/xdr-terraform-modules.git//base/sensu-configuration?ref=v3.2.0"
+  source = "git@github.xdr.accenturefederalcyber.com:mdr-engineering/xdr-terraform-modules.git//base/sensu-configuration?ref=v3.2.12"
 }
 
 dependency "vpc-system-services" {