outputs.tf
1
2
3
4
5
6
7
8
9
output "enabled_account_ids" {
  description = "Account IDs for which Inspector v2 was enabled"
  value       = aws_inspector2_enabler.this.account_ids
}

output "delegated_admin_account_id" {
  description = "Delegated administrator account ID (null if not configured)"
  value       = var.delegated_admin_account_id
}