Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature Request: Security Hub #6674

Closed
8 tasks done
gazoakley opened this issue Dec 1, 2018 · 22 comments · Fixed by #18494
Closed
8 tasks done

Feature Request: Security Hub #6674

gazoakley opened this issue Dec 1, 2018 · 22 comments · Fixed by #18494
Labels
new-resource Introduces a new resource. service/securityhub Issues and PRs that pertain to the securityhub service.
Milestone

Comments

@gazoakley
Copy link
Contributor

gazoakley commented Dec 1, 2018

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

AWS has announced Security Hub: https://aws.amazon.com/security-hub/

New or Affected Resource(s)

  • aws_securityhub_account
  • aws_securityhub_action_target
  • aws_securityhub_member
  • aws_securityhub_product_subscription
  • aws_securityhub_standards_subscription
  • aws_securityhub_organization_admin_account
  • aws_securityhub_invite_accepter
  • aws_securityhub_insight

Potential Terraform Configuration

# Used to enable AWS Security Hub
resource "aws_securityhub_account" "example" {}

# Subscribe to the CIS AWS Foundations Benchmark
resource "aws_securityhub_standards_subscription" "example" {
  depends_on    = ["aws_securityhub_account.example"]
  standards_arn = "arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0"
}

# Subscribe to a third party provider
data "aws_region" "current" {}

resource "aws_securityhub_product_subscription" "example" {
  depends_on  = ["aws_securityhub_account.example"]
  product_arn = "arn:aws:securityhub:${data.aws_region.current.name}:679703615338:product/armordefense/armoranywhere"
}

# Add a member AWS account
resource "aws_securityhub_member" "example" {
  depends_on = ["aws_securityhub_account.example"]
  account_id = "123456789012"
  email      = "[email protected]"
  invite       = true
}

resource "aws_securityhub_account" "invitee" {
  provider = "aws.invitee"
}

resource "aws_securityhub_invite_accepter" "invitee" {
  provider   = "aws.invitee"
  depends_on = ["aws_securityhub_account.invitee"]
  master_id  = "${aws_securityhub_invitation.example.master_id}"
}

# Create an insight (group of findings)
resource "aws_securityhub_insight" "example" {
  depends_on         = ["aws_securityhub_account.example"]
  name               = "Example"
  group_by_attribute = "AwsAccountId"

  filters {
    generator_id {
      comparison = "EQUALS"
      value      = "123456"
    }
  }
}

Product ARNs

Remember to replace ${var.region} as appropriate (or define that variable)

  • arn:aws:securityhub:${var.region}::product/aws/guardduty
  • arn:aws:securityhub:${var.region}::product/aws/inspector
  • arn:aws:securityhub:${var.region}::product/aws/macie
  • arn:aws:securityhub:${var.region}:733251395267:product/alertlogic/althreatmanagement
  • arn:aws:securityhub:${var.region}:679703615338:product/armordefense/armoranywhere
  • arn:aws:securityhub:${var.region}:151784055945:product/barracuda/cloudsecurityguardian
  • arn:aws:securityhub:${var.region}:758245563457:product/checkpoint/cloudguard-iaas
  • arn:aws:securityhub:${var.region}:634729597623:product/checkpoint/dome9-arc
  • arn:aws:securityhub:${var.region}:517716713836:product/crowdstrike/crowdstrike-falcon
  • arn:aws:securityhub:${var.region}:749430749651:product/cyberark/cyberark-pta
  • arn:aws:securityhub:${var.region}:250871914685:product/f5networks/f5-advanced-waf
  • arn:aws:securityhub:${var.region}:123073262904:product/fortinet/fortigate
  • arn:aws:securityhub:${var.region}:324264561773:product/guardicore/aws-infection-monkey
  • arn:aws:securityhub:${var.region}:324264561773:product/guardicore/guardicore
  • arn:aws:securityhub:${var.region}:949680696695:product/ibm/qradar-siem
  • arn:aws:securityhub:${var.region}:955745153808:product/imperva/imperva-attack-analytics
  • arn:aws:securityhub:${var.region}:297986523463:product/mcafee-skyhigh/mcafee-mvision-cloud-aws
  • arn:aws:securityhub:${var.region}:188619942792:product/paloaltonetworks/redlock
  • arn:aws:securityhub:${var.region}:122442690527:product/paloaltonetworks/vm-series
  • arn:aws:securityhub:${var.region}:805950163170:product/qualys/qualys-pc
  • arn:aws:securityhub:${var.region}:805950163170:product/qualys/qualys-vm
  • arn:aws:securityhub:${var.region}:336818582268:product/rapid7/insightvm
  • arn:aws:securityhub:${var.region}:062897671886:product/sophos/sophos-server-protection
  • arn:aws:securityhub:${var.region}:112543817624:product/splunk/splunk-enterprise
  • arn:aws:securityhub:${var.region}:112543817624:product/splunk/splunk-phantom
  • arn:aws:securityhub:${var.region}:956882708938:product/sumologicinc/sumologic-mda
  • arn:aws:securityhub:${var.region}:754237914691:product/symantec-corp/symantec-cwp
  • arn:aws:securityhub:${var.region}:422820575223:product/tenable/tenable-io
  • arn:aws:securityhub:${var.region}:679593333241:product/trend-micro/deep-security
  • arn:aws:securityhub:${var.region}:453761072151:product/turbot/turbot
  • arn:aws:securityhub:${var.region}:496947949261:product/twistlock/twistlock-enterprise

References

aws_securityhub_account

aws_securityhub_member

aws_securityhub_invite_accepter

aws_securityhub_insight

aws_securityhub_standards_subscription

aws_securityhub_product_subscription

@bflad bflad added new-resource Introduces a new resource. service/securityhub Issues and PRs that pertain to the securityhub service. labels Dec 1, 2018
@gazoakley
Copy link
Contributor Author

I'm planning to work on this.

@jsamuel1
Copy link

jsamuel1 commented Dec 5, 2018

@gazoakley
Copy link
Contributor Author

@jsamuel1 @philsynek @tdmalone @brandonstevens: Any feedback on the design/examples above? I'm considering a few things:

  • I think we need an aws_securityhub_account as a way of enabling/disabling Security Hub, but it doesn't export any attributes used by any of the other resources so they need to use an explicit dependency on it. Does this feel OK to you? The alternative would be for other resources to just enable Security Hub when needed, but then there's no good way to turn it off.

  • I might get rid of the aws_securityhub_invitation resource and have sending an invite as parameter that can be disabled on aws_securityhub_member instead. There doesn't seem to be any good use case for adding a member account but not inviting them, and once an invite is sent the only way to revoke it is to delete the member and recreate it again which doesn't fit well with Terraform.

  • I might rename aws_securityhub_standard to aws_securityhub_standard_subscription - this matches the way the API returns a StandardsSubscriptionARN when enabling a standard. Is this a better naming? It matches aws_securityhub_product_subscription. It also means if we have a data source in the future for getting a standard by name it can be called aws_securityhub_standard.

@gazoakley
Copy link
Contributor Author

Following in the same style as aws_guardduty_member I'll look at having a combined resource that creates a member and sends an invite. I'm also going to rename aws_securityhub_standard to aws_securityhub_standard_subscription

@jsamuel1
Copy link

jsamuel1 commented Dec 9, 2018

re: aws_securityhub_standard_subscription - @gazoakley, might be best to keep the plural from the aws API - ie. aws_securityhub_standards_subscription.

I think the separate aws_securityhub_account is needed, so that we can turn securityhub on/off - otherwise there is no reliable way to roll back to a previous state. Would the other API's return an error if securityhub isn't on?

For organization/multi-account usage, using the _member API, does this scenario negate the need to explicity enable in the child accounts?

@gazoakley
Copy link
Contributor Author

re: aws_securityhub_standard_subscription - @gazoakley, might be best to keep the plural from the aws API - ie. aws_securityhub_standards_subscription.

It really bugs me that they named standards with a plural (when you're enabling an individual standard) but not product (which seems more natural). I guess I should rename to be consistent with the API though.

I think the separate aws_securityhub_account is needed, so that we can turn securityhub on/off - otherwise there is no reliable way to roll back to a previous state. Would the other API's return an error if securityhub isn't on?

They do return an error - I'm relying on that behaviour right now to detect if the aws_securityhub_account is present to manage state correctly. I think keeping that resource is probably the best course.

For organization/multi-account usage, using the _member API, does this scenario negate the need to explicity enable in the child accounts?

Doesn't look like it from testing through the console - you still need to send an invite and accept it in the other account even if both accounts are part of the same organization.

@bflad
Copy link
Contributor

bflad commented Dec 20, 2018

The aws_securityhub_account and aws_securityhub_standards_subscription resources have been released in version 1.52.0 and version 1.53.0 of the AWS provider respectively. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading.

@digitalkaoz
Copy link

any plans for aws_securityhub_insight and maybe aws_securityhub_action ?

@conzy
Copy link

conzy commented Sep 17, 2019

Any current plans for aws_securityhub_member and aws_securityhub_invite_accepter resources to support multi account setups? I think they would operate in a similar way to the existing aws_guardduty_member and guardduty_invite_accepter resources

Thanks!

@JonTheNiceGuy
Copy link

JonTheNiceGuy commented Nov 8, 2019

Is there any chance of a aws_securityhub_action_target resource? This would enable things like this: https://aws.amazon.com/blogs/apn/how-to-integrate-aws-security-hub-custom-actions-with-pagerduty/

Edit D'oh. This is already in progress as #10493

@bflad
Copy link
Contributor

bflad commented Mar 17, 2020

The new aws_securityhub_member resource has been merged and will release with version 2.54.0 of the Terraform AWS Provider, later this week. 👍

@doublefelix7
Copy link
Contributor

I'm pretty new to Terraform development and I'm interested in taking a look at the aws_securityhub_insight resource. One question that I have is when defining the resource schema, is it necesssary to define all of the AwsSecurityFindingFilters listed here?

https://docs.aws.amazon.com/sdk-for-go/api/service/securityhub/#AwsSecurityFindingFilters

@ghost
Copy link

ghost commented Jun 8, 2020

Any current plans for aws_securityhub_member and aws_securityhub_invite_accepter resources to support multi account setups? I think they would operate in a similar way to the existing aws_guardduty_member and guardduty_invite_accepter resources

Thanks!

Looking forward to the release of aws_securityhub_invite_accepter

@dgershman
Copy link

There is also aws_securityhub_custom_action tracking an open PR ready for code review. #10493

@bflad
Copy link
Contributor

bflad commented Aug 25, 2020

Support for the aws_securityhub_action_target (custom action) resource has been merged and will release with version 3.4.0 of the Terraform AWS Provider, later this week. Thanks to @hhamalai for the implementation there. 👍

@jasonhuling
Copy link

jasonhuling commented Dec 11, 2020

Hello, any plans for an equivalent of aws_guardduty_organization_admin_account (aws_securityhub_organization_admin_account) for delegating an administrator account when working in AWS Organizations? Looks like this is pretty new, announced on Nov 23, 2020.

https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_EnableOrganizationAdminAccount.html

@azman0101
Copy link

azman0101 commented Jan 7, 2021

any plans for aws_securityhub_insight and maybe aws_securityhub_action ?

Any news on SH insight ?

@anGie44 anGie44 added this to the Roadmap milestone Feb 8, 2021
@anGie44
Copy link
Contributor

anGie44 commented Feb 11, 2021

Hi @jasonhuling et al. 👋 Support for the aws_securityhub_organization_admin_account resource has been merged and will release with version 3.28.0 of the Terraform AWS Provider.

@anGie44
Copy link
Contributor

anGie44 commented Feb 25, 2021

Support for the aws_securityhub_invite_accepter resource has been merged and was released with v3.29.0 of the Terraform AWS Provider.

@anGie44
Copy link
Contributor

anGie44 commented Apr 15, 2021

Support for the aws_securityhub_insight resource has been merged and will release with v3.37.0 of Terraform AWS Provider.

@ghost
Copy link

ghost commented Apr 16, 2021

This has been released in version 3.37.0 of the Terraform AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading.

For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template for triage. Thanks!

@ghost
Copy link

ghost commented May 16, 2021

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.

If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks!

@ghost ghost locked as resolved and limited conversation to collaborators May 16, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
new-resource Introduces a new resource. service/securityhub Issues and PRs that pertain to the securityhub service.
Projects
None yet