# Terraform configuration to enable AWS Security Hub.

provider "aws" {
  region = "us-east-1"
}

# --- 1. Enable Security Hub ---
resource "aws_securityhub_account" "main" {
  # Enabling this resource activates Security Hub in the current account and region.
}

# --- Outputs ---
output "security_hub_arn" {
  value       = aws_securityhub_account.main.arn
  description = "The ARN of the Security Hub."
}
