outputs.tf
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
output "id" {
  description = "GuardDuty detector ID"
  value       = aws_guardduty_detector.this.id
}

output "arn" {
  description = "GuardDuty detector ARN"
  value       = aws_guardduty_detector.this.arn
}

output "account_id" {
  description = "Account ID of the detector"
  value       = aws_guardduty_detector.this.account_id
}