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 other comments that do not add relevant new information or questions, 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
Following up from #6674 (comment) I think this deserves a separate issue to work on. It would be great to manage AWS Organizations delegation for SecurityHub.
New or Affected Resource(s)
- aws_securityhub_organization_admin_account
Potential Terraform Configuration
resource "aws_organizations_organization" "example" {
aws_service_access_principals = ["securityhub.amazonaws.com"]
feature_set = "ALL"
}
resource "aws_securityhub_account" "example" {}
resource "aws_securityhub_organization_admin_account" "example" {
depends_on = [aws_organizations_organization.example]
admin_account_id = "123456789012"
}
References
Community Note
Description
Following up from #6674 (comment) I think this deserves a separate issue to work on. It would be great to manage AWS Organizations delegation for SecurityHub.
New or Affected Resource(s)
Potential Terraform Configuration
References