1. Packages
  2. AWS Classic
  3. API Docs
  4. inspector
  5. AssessmentTemplate

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.13.0 published on Saturday, Dec 2, 2023 by Pulumi

aws.inspector.AssessmentTemplate

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.13.0 published on Saturday, Dec 2, 2023 by Pulumi

    Provides an Inspector Classic Assessment Template

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.Inspector.AssessmentTemplate("example", new()
        {
            TargetArn = aws_inspector_assessment_target.Example.Arn,
            Duration = 3600,
            RulesPackageArns = new[]
            {
                "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-9hgA516p",
                "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-H5hpSawc",
                "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-JJOtZiqQ",
                "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-vg5GGHSD",
            },
            EventSubscriptions = new[]
            {
                new Aws.Inspector.Inputs.AssessmentTemplateEventSubscriptionArgs
                {
                    Event = "ASSESSMENT_RUN_COMPLETED",
                    TopicArn = aws_sns_topic.Example.Arn,
                },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/inspector"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := inspector.NewAssessmentTemplate(ctx, "example", &inspector.AssessmentTemplateArgs{
    			TargetArn: pulumi.Any(aws_inspector_assessment_target.Example.Arn),
    			Duration:  pulumi.Int(3600),
    			RulesPackageArns: pulumi.StringArray{
    				pulumi.String("arn:aws:inspector:us-west-2:758058086616:rulespackage/0-9hgA516p"),
    				pulumi.String("arn:aws:inspector:us-west-2:758058086616:rulespackage/0-H5hpSawc"),
    				pulumi.String("arn:aws:inspector:us-west-2:758058086616:rulespackage/0-JJOtZiqQ"),
    				pulumi.String("arn:aws:inspector:us-west-2:758058086616:rulespackage/0-vg5GGHSD"),
    			},
    			EventSubscriptions: inspector.AssessmentTemplateEventSubscriptionArray{
    				&inspector.AssessmentTemplateEventSubscriptionArgs{
    					Event:    pulumi.String("ASSESSMENT_RUN_COMPLETED"),
    					TopicArn: pulumi.Any(aws_sns_topic.Example.Arn),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.inspector.AssessmentTemplate;
    import com.pulumi.aws.inspector.AssessmentTemplateArgs;
    import com.pulumi.aws.inspector.inputs.AssessmentTemplateEventSubscriptionArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new AssessmentTemplate("example", AssessmentTemplateArgs.builder()        
                .targetArn(aws_inspector_assessment_target.example().arn())
                .duration(3600)
                .rulesPackageArns(            
                    "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-9hgA516p",
                    "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-H5hpSawc",
                    "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-JJOtZiqQ",
                    "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-vg5GGHSD")
                .eventSubscriptions(AssessmentTemplateEventSubscriptionArgs.builder()
                    .event("ASSESSMENT_RUN_COMPLETED")
                    .topicArn(aws_sns_topic.example().arn())
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.inspector.AssessmentTemplate("example",
        target_arn=aws_inspector_assessment_target["example"]["arn"],
        duration=3600,
        rules_package_arns=[
            "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-9hgA516p",
            "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-H5hpSawc",
            "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-JJOtZiqQ",
            "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-vg5GGHSD",
        ],
        event_subscriptions=[aws.inspector.AssessmentTemplateEventSubscriptionArgs(
            event="ASSESSMENT_RUN_COMPLETED",
            topic_arn=aws_sns_topic["example"]["arn"],
        )])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.inspector.AssessmentTemplate("example", {
        targetArn: aws_inspector_assessment_target.example.arn,
        duration: 3600,
        rulesPackageArns: [
            "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-9hgA516p",
            "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-H5hpSawc",
            "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-JJOtZiqQ",
            "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-vg5GGHSD",
        ],
        eventSubscriptions: [{
            event: "ASSESSMENT_RUN_COMPLETED",
            topicArn: aws_sns_topic.example.arn,
        }],
    });
    
    resources:
      example:
        type: aws:inspector:AssessmentTemplate
        properties:
          targetArn: ${aws_inspector_assessment_target.example.arn}
          duration: 3600
          rulesPackageArns:
            - arn:aws:inspector:us-west-2:758058086616:rulespackage/0-9hgA516p
            - arn:aws:inspector:us-west-2:758058086616:rulespackage/0-H5hpSawc
            - arn:aws:inspector:us-west-2:758058086616:rulespackage/0-JJOtZiqQ
            - arn:aws:inspector:us-west-2:758058086616:rulespackage/0-vg5GGHSD
          eventSubscriptions:
            - event: ASSESSMENT_RUN_COMPLETED
              topicArn: ${aws_sns_topic.example.arn}
    

    Create AssessmentTemplate Resource

    new AssessmentTemplate(name: string, args: AssessmentTemplateArgs, opts?: CustomResourceOptions);
    @overload
    def AssessmentTemplate(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           duration: Optional[int] = None,
                           event_subscriptions: Optional[Sequence[AssessmentTemplateEventSubscriptionArgs]] = None,
                           name: Optional[str] = None,
                           rules_package_arns: Optional[Sequence[str]] = None,
                           tags: Optional[Mapping[str, str]] = None,
                           target_arn: Optional[str] = None)
    @overload
    def AssessmentTemplate(resource_name: str,
                           args: AssessmentTemplateArgs,
                           opts: Optional[ResourceOptions] = None)
    func NewAssessmentTemplate(ctx *Context, name string, args AssessmentTemplateArgs, opts ...ResourceOption) (*AssessmentTemplate, error)
    public AssessmentTemplate(string name, AssessmentTemplateArgs args, CustomResourceOptions? opts = null)
    public AssessmentTemplate(String name, AssessmentTemplateArgs args)
    public AssessmentTemplate(String name, AssessmentTemplateArgs args, CustomResourceOptions options)
    
    type: aws:inspector:AssessmentTemplate
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args AssessmentTemplateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AssessmentTemplateArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AssessmentTemplateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AssessmentTemplateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AssessmentTemplateArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    AssessmentTemplate Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The AssessmentTemplate resource accepts the following input properties:

    Duration int

    The duration of the inspector run.

    RulesPackageArns List<string>

    The rules to be used during the run.

    TargetArn string

    The assessment target ARN to attach the template to.

    EventSubscriptions List<AssessmentTemplateEventSubscription>

    A block that enables sending notifications about a specified assessment template event to a designated SNS topic. See Event Subscriptions for details.

    Name string

    The name of the assessment template.

    Tags Dictionary<string, string>

    Key-value map of tags for the Inspector assessment template. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    Duration int

    The duration of the inspector run.

    RulesPackageArns []string

    The rules to be used during the run.

    TargetArn string

    The assessment target ARN to attach the template to.

    EventSubscriptions []AssessmentTemplateEventSubscriptionArgs

    A block that enables sending notifications about a specified assessment template event to a designated SNS topic. See Event Subscriptions for details.

    Name string

    The name of the assessment template.

    Tags map[string]string

    Key-value map of tags for the Inspector assessment template. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    duration Integer

    The duration of the inspector run.

    rulesPackageArns List<String>

    The rules to be used during the run.

    targetArn String

    The assessment target ARN to attach the template to.

    eventSubscriptions List<AssessmentTemplateEventSubscription>

    A block that enables sending notifications about a specified assessment template event to a designated SNS topic. See Event Subscriptions for details.

    name String

    The name of the assessment template.

    tags Map<String,String>

    Key-value map of tags for the Inspector assessment template. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    duration number

    The duration of the inspector run.

    rulesPackageArns string[]

    The rules to be used during the run.

    targetArn string

    The assessment target ARN to attach the template to.

    eventSubscriptions AssessmentTemplateEventSubscription[]

    A block that enables sending notifications about a specified assessment template event to a designated SNS topic. See Event Subscriptions for details.

    name string

    The name of the assessment template.

    tags {[key: string]: string}

    Key-value map of tags for the Inspector assessment template. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    duration int

    The duration of the inspector run.

    rules_package_arns Sequence[str]

    The rules to be used during the run.

    target_arn str

    The assessment target ARN to attach the template to.

    event_subscriptions Sequence[AssessmentTemplateEventSubscriptionArgs]

    A block that enables sending notifications about a specified assessment template event to a designated SNS topic. See Event Subscriptions for details.

    name str

    The name of the assessment template.

    tags Mapping[str, str]

    Key-value map of tags for the Inspector assessment template. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    duration Number

    The duration of the inspector run.

    rulesPackageArns List<String>

    The rules to be used during the run.

    targetArn String

    The assessment target ARN to attach the template to.

    eventSubscriptions List<Property Map>

    A block that enables sending notifications about a specified assessment template event to a designated SNS topic. See Event Subscriptions for details.

    name String

    The name of the assessment template.

    tags Map<String>

    Key-value map of tags for the Inspector assessment template. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AssessmentTemplate resource produces the following output properties:

    Arn string

    The template assessment ARN.

    Id string

    The provider-assigned unique ID for this managed resource.

    TagsAll Dictionary<string, string>

    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:

    Please use tags instead.

    Arn string

    The template assessment ARN.

    Id string

    The provider-assigned unique ID for this managed resource.

    TagsAll map[string]string

    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:

    Please use tags instead.

    arn String

    The template assessment ARN.

    id String

    The provider-assigned unique ID for this managed resource.

    tagsAll Map<String,String>

    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:

    Please use tags instead.

    arn string

    The template assessment ARN.

    id string

    The provider-assigned unique ID for this managed resource.

    tagsAll {[key: string]: string}

    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:

    Please use tags instead.

    arn str

    The template assessment ARN.

    id str

    The provider-assigned unique ID for this managed resource.

    tags_all Mapping[str, str]

    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:

    Please use tags instead.

    arn String

    The template assessment ARN.

    id String

    The provider-assigned unique ID for this managed resource.

    tagsAll Map<String>

    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:

    Please use tags instead.

    Look up Existing AssessmentTemplate Resource

    Get an existing AssessmentTemplate resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AssessmentTemplateState, opts?: CustomResourceOptions): AssessmentTemplate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            duration: Optional[int] = None,
            event_subscriptions: Optional[Sequence[AssessmentTemplateEventSubscriptionArgs]] = None,
            name: Optional[str] = None,
            rules_package_arns: Optional[Sequence[str]] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            target_arn: Optional[str] = None) -> AssessmentTemplate
    func GetAssessmentTemplate(ctx *Context, name string, id IDInput, state *AssessmentTemplateState, opts ...ResourceOption) (*AssessmentTemplate, error)
    public static AssessmentTemplate Get(string name, Input<string> id, AssessmentTemplateState? state, CustomResourceOptions? opts = null)
    public static AssessmentTemplate get(String name, Output<String> id, AssessmentTemplateState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Arn string

    The template assessment ARN.

    Duration int

    The duration of the inspector run.

    EventSubscriptions List<AssessmentTemplateEventSubscription>

    A block that enables sending notifications about a specified assessment template event to a designated SNS topic. See Event Subscriptions for details.

    Name string

    The name of the assessment template.

    RulesPackageArns List<string>

    The rules to be used during the run.

    Tags Dictionary<string, string>

    Key-value map of tags for the Inspector assessment template. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    TagsAll Dictionary<string, string>

    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:

    Please use tags instead.

    TargetArn string

    The assessment target ARN to attach the template to.

    Arn string

    The template assessment ARN.

    Duration int

    The duration of the inspector run.

    EventSubscriptions []AssessmentTemplateEventSubscriptionArgs

    A block that enables sending notifications about a specified assessment template event to a designated SNS topic. See Event Subscriptions for details.

    Name string

    The name of the assessment template.

    RulesPackageArns []string

    The rules to be used during the run.

    Tags map[string]string

    Key-value map of tags for the Inspector assessment template. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    TagsAll map[string]string

    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:

    Please use tags instead.

    TargetArn string

    The assessment target ARN to attach the template to.

    arn String

    The template assessment ARN.

    duration Integer

    The duration of the inspector run.

    eventSubscriptions List<AssessmentTemplateEventSubscription>

    A block that enables sending notifications about a specified assessment template event to a designated SNS topic. See Event Subscriptions for details.

    name String

    The name of the assessment template.

    rulesPackageArns List<String>

    The rules to be used during the run.

    tags Map<String,String>

    Key-value map of tags for the Inspector assessment template. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    tagsAll Map<String,String>

    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:

    Please use tags instead.

    targetArn String

    The assessment target ARN to attach the template to.

    arn string

    The template assessment ARN.

    duration number

    The duration of the inspector run.

    eventSubscriptions AssessmentTemplateEventSubscription[]

    A block that enables sending notifications about a specified assessment template event to a designated SNS topic. See Event Subscriptions for details.

    name string

    The name of the assessment template.

    rulesPackageArns string[]

    The rules to be used during the run.

    tags {[key: string]: string}

    Key-value map of tags for the Inspector assessment template. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    tagsAll {[key: string]: string}

    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:

    Please use tags instead.

    targetArn string

    The assessment target ARN to attach the template to.

    arn str

    The template assessment ARN.

    duration int

    The duration of the inspector run.

    event_subscriptions Sequence[AssessmentTemplateEventSubscriptionArgs]

    A block that enables sending notifications about a specified assessment template event to a designated SNS topic. See Event Subscriptions for details.

    name str

    The name of the assessment template.

    rules_package_arns Sequence[str]

    The rules to be used during the run.

    tags Mapping[str, str]

    Key-value map of tags for the Inspector assessment template. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    tags_all Mapping[str, str]

    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:

    Please use tags instead.

    target_arn str

    The assessment target ARN to attach the template to.

    arn String

    The template assessment ARN.

    duration Number

    The duration of the inspector run.

    eventSubscriptions List<Property Map>

    A block that enables sending notifications about a specified assessment template event to a designated SNS topic. See Event Subscriptions for details.

    name String

    The name of the assessment template.

    rulesPackageArns List<String>

    The rules to be used during the run.

    tags Map<String>

    Key-value map of tags for the Inspector assessment template. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    tagsAll Map<String>

    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:

    Please use tags instead.

    targetArn String

    The assessment target ARN to attach the template to.

    Supporting Types

    AssessmentTemplateEventSubscription, AssessmentTemplateEventSubscriptionArgs

    Event string

    The event for which you want to receive SNS notifications. Valid values are ASSESSMENT_RUN_STARTED, ASSESSMENT_RUN_COMPLETED, ASSESSMENT_RUN_STATE_CHANGED, and FINDING_REPORTED.

    TopicArn string

    The ARN of the SNS topic to which notifications are sent.

    Event string

    The event for which you want to receive SNS notifications. Valid values are ASSESSMENT_RUN_STARTED, ASSESSMENT_RUN_COMPLETED, ASSESSMENT_RUN_STATE_CHANGED, and FINDING_REPORTED.

    TopicArn string

    The ARN of the SNS topic to which notifications are sent.

    event String

    The event for which you want to receive SNS notifications. Valid values are ASSESSMENT_RUN_STARTED, ASSESSMENT_RUN_COMPLETED, ASSESSMENT_RUN_STATE_CHANGED, and FINDING_REPORTED.

    topicArn String

    The ARN of the SNS topic to which notifications are sent.

    event string

    The event for which you want to receive SNS notifications. Valid values are ASSESSMENT_RUN_STARTED, ASSESSMENT_RUN_COMPLETED, ASSESSMENT_RUN_STATE_CHANGED, and FINDING_REPORTED.

    topicArn string

    The ARN of the SNS topic to which notifications are sent.

    event str

    The event for which you want to receive SNS notifications. Valid values are ASSESSMENT_RUN_STARTED, ASSESSMENT_RUN_COMPLETED, ASSESSMENT_RUN_STATE_CHANGED, and FINDING_REPORTED.

    topic_arn str

    The ARN of the SNS topic to which notifications are sent.

    event String

    The event for which you want to receive SNS notifications. Valid values are ASSESSMENT_RUN_STARTED, ASSESSMENT_RUN_COMPLETED, ASSESSMENT_RUN_STATE_CHANGED, and FINDING_REPORTED.

    topicArn String

    The ARN of the SNS topic to which notifications are sent.

    Import

    Using pulumi import, import aws_inspector_assessment_template using the template assessment ARN. For example:

     $ pulumi import aws:inspector/assessmentTemplate:AssessmentTemplate example arn:aws:inspector:us-west-2:123456789012:target/0-9IaAzhGR/template/0-WEcjR8CH
    

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the aws Terraform Provider.

    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.13.0 published on Saturday, Dec 2, 2023 by Pulumi