Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
GSA's email output non-sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieu-benoit committed Jan 15, 2024
1 parent a246ae7 commit 3b1009f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/gsa/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
output "email" {
value = nonsensitive(var.iam_members == null || length(var.iam_members.resource_names) == 0 ? "" : google_service_account.gsa[0].email)
value = var.iam_members == null || length(var.iam_members.resource_names) == 0 ? "" : google_service_account.gsa[0].email
}

0 comments on commit 3b1009f

Please sign in to comment.