Resource: aws_detective_organization_admin_account

Manages a Detective Organization Admin Account. The AWS account utilizing this resource must be an Organizations primary account. More information about Organizations support in Detective can be found in the Detective User Guide.

Example Usage

resource "aws_organizations_organization" "example" {
  aws_service_access_principals = ["detective.amazonaws.com"]
  feature_set                   = "ALL"
}

resource "aws_detective_organization_admin_account" "example" {
  depends_on = [aws_organizations_organization.example]

  account_id = "123456789012"
}

Argument Reference

The following arguments are supported:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

Import

In Terraform v1.5.0 and later, use an import block to import aws_detective_organization_admin_account using account_id. For example:

import {
  to = aws_detective_organization_admin_account.example
  id = 123456789012
}

Using terraform import, import aws_detective_organization_admin_account using account_id. For example:

% terraform import aws_detective_organization_admin_account.example 123456789012