From 521670e7b5bc60db18c4fddddbc069767de0405d Mon Sep 17 00:00:00 2001 From: Andrew Date: Mon, 17 Jun 2024 18:19:34 -0600 Subject: [PATCH] Enable Andrew's SMS notifications on production, disable mobile apps --- terraform/environments/production/main.tf | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/terraform/environments/production/main.tf b/terraform/environments/production/main.tf index 972eb87b8..d4e19e2f4 100644 --- a/terraform/environments/production/main.tf +++ b/terraform/environments/production/main.tf @@ -261,18 +261,20 @@ module "ops" { pagerduty_auth_token = var.pagerduty_auth_token + # Feel free to add your Mobile App (due to SOC requirements, only can be used from work devices) + # or SMS notification (recommended for personal devices) channels additional_notification_channels = [ # Andrew ## Mobile App - "projects/firezone-prod/notificationChannels/203795594709100952", + # "projects/firezone-prod/notificationChannels/203795594709100952", ## SMS - # "projects/firezone-prod/notificationChannels/1314108963890678627", + "projects/firezone-prod/notificationChannels/1314108963890678627", # Brian ## Mobile App - "projects/firezone-prod/notificationChannels/16177228986287373178", + # "projects/firezone-prod/notificationChannels/16177228986287373178", # Jamil ## Mobile App - "projects/firezone-prod/notificationChannels/1608881766413151733" + # "projects/firezone-prod/notificationChannels/1608881766413151733" ] api_host = module.api.host