Skip to content

Commit

Permalink
fix: add workspace_permissions_boundary_arn output
Browse files Browse the repository at this point in the history
  • Loading branch information
marwinbaumannsbp committed May 16, 2024
1 parent 28c4280 commit b8cdea1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,9 @@ output "workload_permissions_boundary_arn" {
value = try(aws_iam_policy.workload_boundary[0].arn, "")
description = "The ARN of the workload permissions boundary"
}

output "workspace_permissions_boundary_arn" {
value = try(aws_iam_policy.workspace_boundary[0].arn, "")
description = "The ARN of the workspace permissions boundary"
}

0 comments on commit b8cdea1

Please sign in to comment.