Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
dwilkie committed Aug 23, 2024
1 parent 7cf0804 commit 8d97c9c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion infrastructure/modules/efs/mount_targets.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
locals {
security_group_name = var.security_group_name == null ? var.name : var.security_group_name
security_group_name = var.security_group_name == null ? (var.name == null ? var.file_system.name : var.name) : var.security_group_name
}

resource "aws_efs_mount_target" "this" {
Expand Down
1 change: 0 additions & 1 deletion infrastructure/staging/switch.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ module "switch_helium" {
app_environment = var.app_environment
json_cdr_url = "https://api-staging.internal.somleng.org/services/call_data_records"
subdomain = "switch-staging"
cache_security_group_name = "switch-staging-efs-cache"
recordings_bucket = module.switch.recordings_bucket
recordings_bucket_access_key_id_parameter = module.switch.recordings_bucket_access_key_id_parameter
recordings_bucket_secret_access_key_parameter = module.switch.recordings_bucket_secret_access_key_parameter
Expand Down

0 comments on commit 8d97c9c

Please sign in to comment.