1. Packages
  2. AWS
  3. API Docs
  4. securityhub
  5. StandardsSubscription
AWS v6.74.0 published on Wednesday, Mar 26, 2025 by Pulumi

aws.securityhub.StandardsSubscription

Explore with Pulumi AI

Subscribes to a Security Hub standard.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const example = new aws.securityhub.Account("example", {});
const current = aws.getRegion({});
const cis = new aws.securityhub.StandardsSubscription("cis", {standardsArn: "arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0"}, {
    dependsOn: [example],
});
const pci321 = new aws.securityhub.StandardsSubscription("pci_321", {standardsArn: current.then(current => `arn:aws:securityhub:${current.name}::standards/pci-dss/v/3.2.1`)}, {
    dependsOn: [example],
});
Copy
import pulumi
import pulumi_aws as aws

example = aws.securityhub.Account("example")
current = aws.get_region()
cis = aws.securityhub.StandardsSubscription("cis", standards_arn="arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0",
opts = pulumi.ResourceOptions(depends_on=[example]))
pci321 = aws.securityhub.StandardsSubscription("pci_321", standards_arn=f"arn:aws:securityhub:{current.name}::standards/pci-dss/v/3.2.1",
opts = pulumi.ResourceOptions(depends_on=[example]))
Copy
package main

import (
	"fmt"

	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws"
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/securityhub"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := securityhub.NewAccount(ctx, "example", nil)
		if err != nil {
			return err
		}
		current, err := aws.GetRegion(ctx, &aws.GetRegionArgs{}, nil)
		if err != nil {
			return err
		}
		_, err = securityhub.NewStandardsSubscription(ctx, "cis", &securityhub.StandardsSubscriptionArgs{
			StandardsArn: pulumi.String("arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0"),
		}, pulumi.DependsOn([]pulumi.Resource{
			example,
		}))
		if err != nil {
			return err
		}
		_, err = securityhub.NewStandardsSubscription(ctx, "pci_321", &securityhub.StandardsSubscriptionArgs{
			StandardsArn: pulumi.Sprintf("arn:aws:securityhub:%v::standards/pci-dss/v/3.2.1", current.Name),
		}, pulumi.DependsOn([]pulumi.Resource{
			example,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var example = new Aws.SecurityHub.Account("example");

    var current = Aws.GetRegion.Invoke();

    var cis = new Aws.SecurityHub.StandardsSubscription("cis", new()
    {
        StandardsArn = "arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0",
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            example,
        },
    });

    var pci321 = new Aws.SecurityHub.StandardsSubscription("pci_321", new()
    {
        StandardsArn = $"arn:aws:securityhub:{current.Apply(getRegionResult => getRegionResult.Name)}::standards/pci-dss/v/3.2.1",
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            example,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.securityhub.Account;
import com.pulumi.aws.AwsFunctions;
import com.pulumi.aws.inputs.GetRegionArgs;
import com.pulumi.aws.securityhub.StandardsSubscription;
import com.pulumi.aws.securityhub.StandardsSubscriptionArgs;
import com.pulumi.resources.CustomResourceOptions;
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 Account("example");

        final var current = AwsFunctions.getRegion();

        var cis = new StandardsSubscription("cis", StandardsSubscriptionArgs.builder()
            .standardsArn("arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0")
            .build(), CustomResourceOptions.builder()
                .dependsOn(example)
                .build());

        var pci321 = new StandardsSubscription("pci321", StandardsSubscriptionArgs.builder()
            .standardsArn(String.format("arn:aws:securityhub:%s::standards/pci-dss/v/3.2.1", current.applyValue(getRegionResult -> getRegionResult.name())))
            .build(), CustomResourceOptions.builder()
                .dependsOn(example)
                .build());

    }
}
Copy
resources:
  example:
    type: aws:securityhub:Account
  cis:
    type: aws:securityhub:StandardsSubscription
    properties:
      standardsArn: arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0
    options:
      dependsOn:
        - ${example}
  pci321:
    type: aws:securityhub:StandardsSubscription
    name: pci_321
    properties:
      standardsArn: arn:aws:securityhub:${current.name}::standards/pci-dss/v/3.2.1
    options:
      dependsOn:
        - ${example}
variables:
  current:
    fn::invoke:
      function: aws:getRegion
      arguments: {}
Copy

Create StandardsSubscription Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new StandardsSubscription(name: string, args: StandardsSubscriptionArgs, opts?: CustomResourceOptions);
@overload
def StandardsSubscription(resource_name: str,
                          args: StandardsSubscriptionArgs,
                          opts: Optional[ResourceOptions] = None)

@overload
def StandardsSubscription(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          standards_arn: Optional[str] = None)
func NewStandardsSubscription(ctx *Context, name string, args StandardsSubscriptionArgs, opts ...ResourceOption) (*StandardsSubscription, error)
public StandardsSubscription(string name, StandardsSubscriptionArgs args, CustomResourceOptions? opts = null)
public StandardsSubscription(String name, StandardsSubscriptionArgs args)
public StandardsSubscription(String name, StandardsSubscriptionArgs args, CustomResourceOptions options)
type: aws:securityhub:StandardsSubscription
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. StandardsSubscriptionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. StandardsSubscriptionArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. StandardsSubscriptionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. StandardsSubscriptionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. StandardsSubscriptionArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var standardsSubscriptionResource = new Aws.SecurityHub.StandardsSubscription("standardsSubscriptionResource", new()
{
    StandardsArn = "string",
});
Copy
example, err := securityhub.NewStandardsSubscription(ctx, "standardsSubscriptionResource", &securityhub.StandardsSubscriptionArgs{
	StandardsArn: pulumi.String("string"),
})
Copy
var standardsSubscriptionResource = new StandardsSubscription("standardsSubscriptionResource", StandardsSubscriptionArgs.builder()
    .standardsArn("string")
    .build());
Copy
standards_subscription_resource = aws.securityhub.StandardsSubscription("standardsSubscriptionResource", standards_arn="string")
Copy
const standardsSubscriptionResource = new aws.securityhub.StandardsSubscription("standardsSubscriptionResource", {standardsArn: "string"});
Copy
type: aws:securityhub:StandardsSubscription
properties:
    standardsArn: string
Copy

StandardsSubscription Resource Properties

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

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The StandardsSubscription resource accepts the following input properties:

StandardsArn
This property is required.
Changes to this property will trigger replacement.
string

The ARN of a standard - see below.

Currently available standards (remember to replace ${var.partition} and ${var.region} as appropriate):

| Name | ARN | |------------------------------------------|--------------------------------------------------------------------------------------------------------------| | AWS Foundational Security Best Practices | arn:${var.partition}:securityhub:${var.region}::standards/aws-foundational-security-best-practices/v/1.0.0 | | AWS Resource Tagging Standard | arn:${var.partition}:securityhub:${var.region}::standards/aws-resource-tagging-standard/v/1.0.0 | | CIS AWS Foundations Benchmark v1.2.0 | arn:${var.partition}:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0 | | CIS AWS Foundations Benchmark v1.4.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/1.4.0 | | CIS AWS Foundations Benchmark v3.0.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/3.0.0 | | NIST SP 800-53 Rev. 5 | arn:${var.partition}:securityhub:${var.region}::standards/nist-800-53/v/5.0.0 | | PCI DSS | arn:${var.partition}:securityhub:${var.region}::standards/pci-dss/v/3.2.1 |

StandardsArn
This property is required.
Changes to this property will trigger replacement.
string

The ARN of a standard - see below.

Currently available standards (remember to replace ${var.partition} and ${var.region} as appropriate):

| Name | ARN | |------------------------------------------|--------------------------------------------------------------------------------------------------------------| | AWS Foundational Security Best Practices | arn:${var.partition}:securityhub:${var.region}::standards/aws-foundational-security-best-practices/v/1.0.0 | | AWS Resource Tagging Standard | arn:${var.partition}:securityhub:${var.region}::standards/aws-resource-tagging-standard/v/1.0.0 | | CIS AWS Foundations Benchmark v1.2.0 | arn:${var.partition}:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0 | | CIS AWS Foundations Benchmark v1.4.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/1.4.0 | | CIS AWS Foundations Benchmark v3.0.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/3.0.0 | | NIST SP 800-53 Rev. 5 | arn:${var.partition}:securityhub:${var.region}::standards/nist-800-53/v/5.0.0 | | PCI DSS | arn:${var.partition}:securityhub:${var.region}::standards/pci-dss/v/3.2.1 |

standardsArn
This property is required.
Changes to this property will trigger replacement.
String

The ARN of a standard - see below.

Currently available standards (remember to replace ${var.partition} and ${var.region} as appropriate):

| Name | ARN | |------------------------------------------|--------------------------------------------------------------------------------------------------------------| | AWS Foundational Security Best Practices | arn:${var.partition}:securityhub:${var.region}::standards/aws-foundational-security-best-practices/v/1.0.0 | | AWS Resource Tagging Standard | arn:${var.partition}:securityhub:${var.region}::standards/aws-resource-tagging-standard/v/1.0.0 | | CIS AWS Foundations Benchmark v1.2.0 | arn:${var.partition}:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0 | | CIS AWS Foundations Benchmark v1.4.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/1.4.0 | | CIS AWS Foundations Benchmark v3.0.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/3.0.0 | | NIST SP 800-53 Rev. 5 | arn:${var.partition}:securityhub:${var.region}::standards/nist-800-53/v/5.0.0 | | PCI DSS | arn:${var.partition}:securityhub:${var.region}::standards/pci-dss/v/3.2.1 |

standardsArn
This property is required.
Changes to this property will trigger replacement.
string

The ARN of a standard - see below.

Currently available standards (remember to replace ${var.partition} and ${var.region} as appropriate):

| Name | ARN | |------------------------------------------|--------------------------------------------------------------------------------------------------------------| | AWS Foundational Security Best Practices | arn:${var.partition}:securityhub:${var.region}::standards/aws-foundational-security-best-practices/v/1.0.0 | | AWS Resource Tagging Standard | arn:${var.partition}:securityhub:${var.region}::standards/aws-resource-tagging-standard/v/1.0.0 | | CIS AWS Foundations Benchmark v1.2.0 | arn:${var.partition}:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0 | | CIS AWS Foundations Benchmark v1.4.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/1.4.0 | | CIS AWS Foundations Benchmark v3.0.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/3.0.0 | | NIST SP 800-53 Rev. 5 | arn:${var.partition}:securityhub:${var.region}::standards/nist-800-53/v/5.0.0 | | PCI DSS | arn:${var.partition}:securityhub:${var.region}::standards/pci-dss/v/3.2.1 |

standards_arn
This property is required.
Changes to this property will trigger replacement.
str

The ARN of a standard - see below.

Currently available standards (remember to replace ${var.partition} and ${var.region} as appropriate):

| Name | ARN | |------------------------------------------|--------------------------------------------------------------------------------------------------------------| | AWS Foundational Security Best Practices | arn:${var.partition}:securityhub:${var.region}::standards/aws-foundational-security-best-practices/v/1.0.0 | | AWS Resource Tagging Standard | arn:${var.partition}:securityhub:${var.region}::standards/aws-resource-tagging-standard/v/1.0.0 | | CIS AWS Foundations Benchmark v1.2.0 | arn:${var.partition}:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0 | | CIS AWS Foundations Benchmark v1.4.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/1.4.0 | | CIS AWS Foundations Benchmark v3.0.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/3.0.0 | | NIST SP 800-53 Rev. 5 | arn:${var.partition}:securityhub:${var.region}::standards/nist-800-53/v/5.0.0 | | PCI DSS | arn:${var.partition}:securityhub:${var.region}::standards/pci-dss/v/3.2.1 |

standardsArn
This property is required.
Changes to this property will trigger replacement.
String

The ARN of a standard - see below.

Currently available standards (remember to replace ${var.partition} and ${var.region} as appropriate):

| Name | ARN | |------------------------------------------|--------------------------------------------------------------------------------------------------------------| | AWS Foundational Security Best Practices | arn:${var.partition}:securityhub:${var.region}::standards/aws-foundational-security-best-practices/v/1.0.0 | | AWS Resource Tagging Standard | arn:${var.partition}:securityhub:${var.region}::standards/aws-resource-tagging-standard/v/1.0.0 | | CIS AWS Foundations Benchmark v1.2.0 | arn:${var.partition}:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0 | | CIS AWS Foundations Benchmark v1.4.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/1.4.0 | | CIS AWS Foundations Benchmark v3.0.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/3.0.0 | | NIST SP 800-53 Rev. 5 | arn:${var.partition}:securityhub:${var.region}::standards/nist-800-53/v/5.0.0 | | PCI DSS | arn:${var.partition}:securityhub:${var.region}::standards/pci-dss/v/3.2.1 |

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing StandardsSubscription Resource

Get an existing StandardsSubscription 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?: StandardsSubscriptionState, opts?: CustomResourceOptions): StandardsSubscription
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        standards_arn: Optional[str] = None) -> StandardsSubscription
func GetStandardsSubscription(ctx *Context, name string, id IDInput, state *StandardsSubscriptionState, opts ...ResourceOption) (*StandardsSubscription, error)
public static StandardsSubscription Get(string name, Input<string> id, StandardsSubscriptionState? state, CustomResourceOptions? opts = null)
public static StandardsSubscription get(String name, Output<String> id, StandardsSubscriptionState state, CustomResourceOptions options)
resources:  _:    type: aws:securityhub:StandardsSubscription    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
StandardsArn Changes to this property will trigger replacement. string

The ARN of a standard - see below.

Currently available standards (remember to replace ${var.partition} and ${var.region} as appropriate):

| Name | ARN | |------------------------------------------|--------------------------------------------------------------------------------------------------------------| | AWS Foundational Security Best Practices | arn:${var.partition}:securityhub:${var.region}::standards/aws-foundational-security-best-practices/v/1.0.0 | | AWS Resource Tagging Standard | arn:${var.partition}:securityhub:${var.region}::standards/aws-resource-tagging-standard/v/1.0.0 | | CIS AWS Foundations Benchmark v1.2.0 | arn:${var.partition}:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0 | | CIS AWS Foundations Benchmark v1.4.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/1.4.0 | | CIS AWS Foundations Benchmark v3.0.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/3.0.0 | | NIST SP 800-53 Rev. 5 | arn:${var.partition}:securityhub:${var.region}::standards/nist-800-53/v/5.0.0 | | PCI DSS | arn:${var.partition}:securityhub:${var.region}::standards/pci-dss/v/3.2.1 |

StandardsArn Changes to this property will trigger replacement. string

The ARN of a standard - see below.

Currently available standards (remember to replace ${var.partition} and ${var.region} as appropriate):

| Name | ARN | |------------------------------------------|--------------------------------------------------------------------------------------------------------------| | AWS Foundational Security Best Practices | arn:${var.partition}:securityhub:${var.region}::standards/aws-foundational-security-best-practices/v/1.0.0 | | AWS Resource Tagging Standard | arn:${var.partition}:securityhub:${var.region}::standards/aws-resource-tagging-standard/v/1.0.0 | | CIS AWS Foundations Benchmark v1.2.0 | arn:${var.partition}:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0 | | CIS AWS Foundations Benchmark v1.4.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/1.4.0 | | CIS AWS Foundations Benchmark v3.0.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/3.0.0 | | NIST SP 800-53 Rev. 5 | arn:${var.partition}:securityhub:${var.region}::standards/nist-800-53/v/5.0.0 | | PCI DSS | arn:${var.partition}:securityhub:${var.region}::standards/pci-dss/v/3.2.1 |

standardsArn Changes to this property will trigger replacement. String

The ARN of a standard - see below.

Currently available standards (remember to replace ${var.partition} and ${var.region} as appropriate):

| Name | ARN | |------------------------------------------|--------------------------------------------------------------------------------------------------------------| | AWS Foundational Security Best Practices | arn:${var.partition}:securityhub:${var.region}::standards/aws-foundational-security-best-practices/v/1.0.0 | | AWS Resource Tagging Standard | arn:${var.partition}:securityhub:${var.region}::standards/aws-resource-tagging-standard/v/1.0.0 | | CIS AWS Foundations Benchmark v1.2.0 | arn:${var.partition}:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0 | | CIS AWS Foundations Benchmark v1.4.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/1.4.0 | | CIS AWS Foundations Benchmark v3.0.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/3.0.0 | | NIST SP 800-53 Rev. 5 | arn:${var.partition}:securityhub:${var.region}::standards/nist-800-53/v/5.0.0 | | PCI DSS | arn:${var.partition}:securityhub:${var.region}::standards/pci-dss/v/3.2.1 |

standardsArn Changes to this property will trigger replacement. string

The ARN of a standard - see below.

Currently available standards (remember to replace ${var.partition} and ${var.region} as appropriate):

| Name | ARN | |------------------------------------------|--------------------------------------------------------------------------------------------------------------| | AWS Foundational Security Best Practices | arn:${var.partition}:securityhub:${var.region}::standards/aws-foundational-security-best-practices/v/1.0.0 | | AWS Resource Tagging Standard | arn:${var.partition}:securityhub:${var.region}::standards/aws-resource-tagging-standard/v/1.0.0 | | CIS AWS Foundations Benchmark v1.2.0 | arn:${var.partition}:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0 | | CIS AWS Foundations Benchmark v1.4.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/1.4.0 | | CIS AWS Foundations Benchmark v3.0.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/3.0.0 | | NIST SP 800-53 Rev. 5 | arn:${var.partition}:securityhub:${var.region}::standards/nist-800-53/v/5.0.0 | | PCI DSS | arn:${var.partition}:securityhub:${var.region}::standards/pci-dss/v/3.2.1 |

standards_arn Changes to this property will trigger replacement. str

The ARN of a standard - see below.

Currently available standards (remember to replace ${var.partition} and ${var.region} as appropriate):

| Name | ARN | |------------------------------------------|--------------------------------------------------------------------------------------------------------------| | AWS Foundational Security Best Practices | arn:${var.partition}:securityhub:${var.region}::standards/aws-foundational-security-best-practices/v/1.0.0 | | AWS Resource Tagging Standard | arn:${var.partition}:securityhub:${var.region}::standards/aws-resource-tagging-standard/v/1.0.0 | | CIS AWS Foundations Benchmark v1.2.0 | arn:${var.partition}:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0 | | CIS AWS Foundations Benchmark v1.4.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/1.4.0 | | CIS AWS Foundations Benchmark v3.0.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/3.0.0 | | NIST SP 800-53 Rev. 5 | arn:${var.partition}:securityhub:${var.region}::standards/nist-800-53/v/5.0.0 | | PCI DSS | arn:${var.partition}:securityhub:${var.region}::standards/pci-dss/v/3.2.1 |

standardsArn Changes to this property will trigger replacement. String

The ARN of a standard - see below.

Currently available standards (remember to replace ${var.partition} and ${var.region} as appropriate):

| Name | ARN | |------------------------------------------|--------------------------------------------------------------------------------------------------------------| | AWS Foundational Security Best Practices | arn:${var.partition}:securityhub:${var.region}::standards/aws-foundational-security-best-practices/v/1.0.0 | | AWS Resource Tagging Standard | arn:${var.partition}:securityhub:${var.region}::standards/aws-resource-tagging-standard/v/1.0.0 | | CIS AWS Foundations Benchmark v1.2.0 | arn:${var.partition}:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0 | | CIS AWS Foundations Benchmark v1.4.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/1.4.0 | | CIS AWS Foundations Benchmark v3.0.0 | arn:${var.partition}:securityhub:${var.region}::standards/cis-aws-foundations-benchmark/v/3.0.0 | | NIST SP 800-53 Rev. 5 | arn:${var.partition}:securityhub:${var.region}::standards/nist-800-53/v/5.0.0 | | PCI DSS | arn:${var.partition}:securityhub:${var.region}::standards/pci-dss/v/3.2.1 |

Import

Using pulumi import, import Security Hub standards subscriptions using the standards subscription ARN. For example:

$ pulumi import aws:securityhub/standardsSubscription:StandardsSubscription cis arn:aws:securityhub:eu-west-1:123456789012:subscription/cis-aws-foundations-benchmark/v/1.2.0
Copy
$ pulumi import aws:securityhub/standardsSubscription:StandardsSubscription pci_321 arn:aws:securityhub:eu-west-1:123456789012:subscription/pci-dss/v/3.2.1
Copy
$ pulumi import aws:securityhub/standardsSubscription:StandardsSubscription nist_800_53_rev_5 arn:aws:securityhub:eu-west-1:123456789012:subscription/nist-800-53/v/5.0.0
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.