You must be logged in to view saved presets
Subscribes to a Security Hub product using a specific product ARN within the current AWS region.
data "aws_region" "current" {
}
resource "aws_securityhub_account" "example" {
}
resource "aws_securityhub_product_subscription" "example" {
depends_on = ["aws_securityhub_account.example"]
product_arn = "arn:aws:securityhub:${data.aws_region.current.name}:733251395267:product/alertlogic/althreatmanagement"
}