Resource: aws_auditmanager_assessment_report

Terraform resource for managing an AWS Audit Manager Assessment Report.

Example Usage

Basic Usage

resource "aws_auditmanager_assessment_report" "test" {
  name          = "example"
  assessment_id = aws_auditmanager_assessment.test.id
}

Argument Reference

The following arguments are required:

The following arguments are optional:

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 Audit Manager Assessment Reports using the assessment report id. For example:

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

Using terraform import, import Audit Manager Assessment Reports using the assessment report id. For example:

% terraform import aws_auditmanager_assessment_report.example abc123-de45