Provides an Inspector Classic Assessment Target
resource "aws_inspector_resource_group" "bar" {
tags = {
Name = "foo"
Env = "bar"
}
}
resource "aws_inspector_assessment_target" "foo" {
name = "assessment target"
resource_group_arn = aws_inspector_resource_group.bar.arn
}
This resource supports the following arguments:
name
- (Required) The name of the assessment target.resource_group_arn
(Optional) Inspector Resource Group Amazon Resource Name (ARN) stating tags for instance matching. If not specified, all EC2 instances in the current AWS account and region are included in the assessment target.This resource exports the following attributes in addition to the arguments above:
arn
- The target assessment ARN.In Terraform v1.5.0 and later, use an import
block to import Inspector Classic Assessment Targets using their Amazon Resource Name (ARN). For example:
import {
to = aws_inspector_assessment_target.example
id = "arn:aws:inspector:us-east-1:123456789012:target/0-xxxxxxx"
}
Using terraform import
, import Inspector Classic Assessment Targets using their Amazon Resource Name (ARN). For example:
% terraform import aws_inspector_assessment_target.example arn:aws:inspector:us-east-1:123456789012:target/0-xxxxxxx