Skip to content

Commit

Permalink
Add external_dns_role_arn output (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentmrg authored Apr 10, 2024
1 parent 9ec5242 commit f2c5242
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,8 @@ output "aws_load_balancer_controller_role_arn" {
value = try(aws_iam_role.aws_load_balancer_controller[0].arn, null)
description = "The ARN identifier of the role created in AWS for the aws-load-balancer-controller."
}

output "external_dns_role_arn" {
value = try(aws_iam_role.external_dns[0].arn, null)
description = "The ARN identifier of the role created in AWS for the external-dns."
}

0 comments on commit f2c5242

Please sign in to comment.