Resource: aws_auditmanager_control

Terraform resource for managing an AWS Audit Manager Control.

Example Usage

Basic Usage

resource "aws_auditmanager_control" "example" {
  name = "example"

  control_mapping_sources {
    source_name          = "example"
    source_set_up_option = "Procedural_Controls_Mapping"
    source_type          = "MANUAL"
  }
}

Argument Reference

The following arguments are required:

The following arguments are optional:

control_mapping_sources

The following arguments are required:

The following arguments are optional:

source_keyword

The following arguments are required:

Attribute Reference

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

Import

In Terraform v1.5.0 and later, use an import block to import an Audit Manager Control using the id. For example:

import {
  to = aws_auditmanager_control.example
  id = "abc123-de45"
}

Using terraform import, import an Audit Manager Control using the id. For example:

% terraform import aws_auditmanager_control.example abc123-de45