Skip to content

Commit

Permalink
corrected s3 bucket output
Browse files Browse the repository at this point in the history
  • Loading branch information
zachreborn committed Dec 4, 2024
1 parent eef494b commit f02dc6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/aws/transfer_family/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ module "transfer_family_iam_role" {
resource "aws_transfer_user" "this" {
for_each = var.users

home_directory = "/${module.bucket.id}/${each.value.home_directory}"
home_directory = "/${module.bucket.s3_bucket_id}/${each.value.home_directory}"
home_directory_type = each.value.home_directory_type
policy = each.value.home_directory_type == "LOGICAL" ? null : (each.value.policy == null ? local.default_session_policy : each.value.policy)
role = module.transfer_family_iam_role.arn
Expand Down

0 comments on commit f02dc6c

Please sign in to comment.