outputs.tf
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# Outputs ====================================================================

output "primary_contact" {
  description = "Primary contact as configured"
  value       = try(aws_account_primary_contact.this[0], null)
}

output "alternate_contacts" {
  description = "Alternate contacts as configured"
  value       = aws_account_alternate_contact.this
}