Skip to content

Commit

Permalink
outputs: add ebs csi policy arn
Browse files Browse the repository at this point in the history
Signed-off-by: darox <[email protected]>
  • Loading branch information
darox committed Oct 22, 2024
1 parent ba1f50e commit cb193e6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ output "aws_ebs_csi_driver_role_arn" {
value = length(var.aws_ebs_csi_driver_oidc_fully_qualified_subjects) > 0 ? module.iam_assumable_role_aws_ebs_csi_driver[0].iam_role_arn : ""
}

output "aws_ebs_csi_driver_policy_arn" {
value = length(var.aws_ebs_csi_driver_oidc_fully_qualified_subjects) > 0 ? aws_iam_policy.aws_ebs_csi_driver[0].arn : ""
}

output "aws_load_balancer_controller_role_arn" {
value = length(var.aws_load_balancer_controller_oidc_fully_qualified_subjects) > 0 ? module.iam_assumable_role_aws_load_balancer_controller[0].iam_role_arn : ""
}
Expand Down

0 comments on commit cb193e6

Please sign in to comment.