Skip to content

Commit

Permalink
Add uuid output for msk-cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
posquit0 committed Nov 8, 2024
1 parent 38a95ec commit 1313e95
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modules/msk-cluster/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ output "arn" {
value = aws_msk_cluster.this.arn
}

output "uuid" {
description = "The UUID of the MSK cluster, for use in IAM policies."
value = aws_msk_cluster.this.cluster_uuid
}

output "name" {
description = "The MSK cluster name."
value = var.name
Expand Down

0 comments on commit 1313e95

Please sign in to comment.