Try AWS Native preview for resources not in the classic version.
aws.securitylake.CustomLogSource
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Resource for managing an AWS Security Lake Custom Log Source.
NOTE: The underlying
aws.securitylake.DataLake
must be configured before creating theaws.securitylake.CustomLogSource
. Use adepends_on
statement.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.securitylake.CustomLogSource("example", {
sourceName: "example-name",
sourceVersion: "1.0",
eventClasses: ["FILE_ACTIVITY"],
configuration: {
crawlerConfiguration: {
roleArn: customLog.arn,
},
providerIdentity: {
externalId: "example-id",
principal: "123456789012",
},
},
}, {
dependsOn: [exampleAwsSecuritylakeDataLake],
});
import pulumi
import pulumi_aws as aws
example = aws.securitylake.CustomLogSource("example",
source_name="example-name",
source_version="1.0",
event_classes=["FILE_ACTIVITY"],
configuration={
"crawlerConfiguration": {
"roleArn": custom_log["arn"],
},
"providerIdentity": {
"externalId": "example-id",
"principal": "123456789012",
},
},
opts = pulumi.ResourceOptions(depends_on=[example_aws_securitylake_data_lake]))
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/securitylake"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := securitylake.NewCustomLogSource(ctx, "example", &securitylake.CustomLogSourceArgs{
SourceName: pulumi.String("example-name"),
SourceVersion: pulumi.String("1.0"),
EventClasses: pulumi.StringArray{
pulumi.String("FILE_ACTIVITY"),
},
Configuration: &securitylake.CustomLogSourceConfigurationArgs{
CrawlerConfiguration: &securitylake.CustomLogSourceConfigurationCrawlerConfigurationArgs{
RoleArn: pulumi.Any(customLog.Arn),
},
ProviderIdentity: &securitylake.CustomLogSourceConfigurationProviderIdentityArgs{
ExternalId: pulumi.String("example-id"),
Principal: pulumi.String("123456789012"),
},
},
}, pulumi.DependsOn([]pulumi.Resource{
exampleAwsSecuritylakeDataLake,
}))
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.SecurityLake.CustomLogSource("example", new()
{
SourceName = "example-name",
SourceVersion = "1.0",
EventClasses = new[]
{
"FILE_ACTIVITY",
},
Configuration = new Aws.SecurityLake.Inputs.CustomLogSourceConfigurationArgs
{
CrawlerConfiguration = new Aws.SecurityLake.Inputs.CustomLogSourceConfigurationCrawlerConfigurationArgs
{
RoleArn = customLog.Arn,
},
ProviderIdentity = new Aws.SecurityLake.Inputs.CustomLogSourceConfigurationProviderIdentityArgs
{
ExternalId = "example-id",
Principal = "123456789012",
},
},
}, new CustomResourceOptions
{
DependsOn =
{
exampleAwsSecuritylakeDataLake,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.securitylake.CustomLogSource;
import com.pulumi.aws.securitylake.CustomLogSourceArgs;
import com.pulumi.aws.securitylake.inputs.CustomLogSourceConfigurationArgs;
import com.pulumi.aws.securitylake.inputs.CustomLogSourceConfigurationCrawlerConfigurationArgs;
import com.pulumi.aws.securitylake.inputs.CustomLogSourceConfigurationProviderIdentityArgs;
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 CustomLogSource("example", CustomLogSourceArgs.builder()
.sourceName("example-name")
.sourceVersion("1.0")
.eventClasses("FILE_ACTIVITY")
.configuration(CustomLogSourceConfigurationArgs.builder()
.crawlerConfiguration(CustomLogSourceConfigurationCrawlerConfigurationArgs.builder()
.roleArn(customLog.arn())
.build())
.providerIdentity(CustomLogSourceConfigurationProviderIdentityArgs.builder()
.externalId("example-id")
.principal("123456789012")
.build())
.build())
.build(), CustomResourceOptions.builder()
.dependsOn(exampleAwsSecuritylakeDataLake)
.build());
}
}
resources:
example:
type: aws:securitylake:CustomLogSource
properties:
sourceName: example-name
sourceVersion: '1.0'
eventClasses:
- FILE_ACTIVITY
configuration:
crawlerConfiguration:
roleArn: ${customLog.arn}
providerIdentity:
externalId: example-id
principal: '123456789012'
options:
dependson:
- ${exampleAwsSecuritylakeDataLake}
Create CustomLogSource Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CustomLogSource(name: string, args: CustomLogSourceArgs, opts?: CustomResourceOptions);
@overload
def CustomLogSource(resource_name: str,
args: CustomLogSourceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CustomLogSource(resource_name: str,
opts: Optional[ResourceOptions] = None,
source_name: Optional[str] = None,
configuration: Optional[CustomLogSourceConfigurationArgs] = None,
event_classes: Optional[Sequence[str]] = None,
source_version: Optional[str] = None)
func NewCustomLogSource(ctx *Context, name string, args CustomLogSourceArgs, opts ...ResourceOption) (*CustomLogSource, error)
public CustomLogSource(string name, CustomLogSourceArgs args, CustomResourceOptions? opts = null)
public CustomLogSource(String name, CustomLogSourceArgs args)
public CustomLogSource(String name, CustomLogSourceArgs args, CustomResourceOptions options)
type: aws:securitylake:CustomLogSource
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args CustomLogSourceArgs
- 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 CustomLogSourceArgs
- 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 CustomLogSourceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CustomLogSourceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CustomLogSourceArgs
- 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 customLogSourceResource = new Aws.SecurityLake.CustomLogSource("customLogSourceResource", new()
{
SourceName = "string",
Configuration = new Aws.SecurityLake.Inputs.CustomLogSourceConfigurationArgs
{
CrawlerConfiguration = new Aws.SecurityLake.Inputs.CustomLogSourceConfigurationCrawlerConfigurationArgs
{
RoleArn = "string",
},
ProviderIdentity = new Aws.SecurityLake.Inputs.CustomLogSourceConfigurationProviderIdentityArgs
{
ExternalId = "string",
Principal = "string",
},
},
EventClasses = new[]
{
"string",
},
SourceVersion = "string",
});
example, err := securitylake.NewCustomLogSource(ctx, "customLogSourceResource", &securitylake.CustomLogSourceArgs{
SourceName: pulumi.String("string"),
Configuration: &securitylake.CustomLogSourceConfigurationArgs{
CrawlerConfiguration: &securitylake.CustomLogSourceConfigurationCrawlerConfigurationArgs{
RoleArn: pulumi.String("string"),
},
ProviderIdentity: &securitylake.CustomLogSourceConfigurationProviderIdentityArgs{
ExternalId: pulumi.String("string"),
Principal: pulumi.String("string"),
},
},
EventClasses: pulumi.StringArray{
pulumi.String("string"),
},
SourceVersion: pulumi.String("string"),
})
var customLogSourceResource = new CustomLogSource("customLogSourceResource", CustomLogSourceArgs.builder()
.sourceName("string")
.configuration(CustomLogSourceConfigurationArgs.builder()
.crawlerConfiguration(CustomLogSourceConfigurationCrawlerConfigurationArgs.builder()
.roleArn("string")
.build())
.providerIdentity(CustomLogSourceConfigurationProviderIdentityArgs.builder()
.externalId("string")
.principal("string")
.build())
.build())
.eventClasses("string")
.sourceVersion("string")
.build());
custom_log_source_resource = aws.securitylake.CustomLogSource("customLogSourceResource",
source_name="string",
configuration={
"crawlerConfiguration": {
"roleArn": "string",
},
"providerIdentity": {
"externalId": "string",
"principal": "string",
},
},
event_classes=["string"],
source_version="string")
const customLogSourceResource = new aws.securitylake.CustomLogSource("customLogSourceResource", {
sourceName: "string",
configuration: {
crawlerConfiguration: {
roleArn: "string",
},
providerIdentity: {
externalId: "string",
principal: "string",
},
},
eventClasses: ["string"],
sourceVersion: "string",
});
type: aws:securitylake:CustomLogSource
properties:
configuration:
crawlerConfiguration:
roleArn: string
providerIdentity:
externalId: string
principal: string
eventClasses:
- string
sourceName: string
sourceVersion: string
CustomLogSource 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 CustomLogSource resource accepts the following input properties:
- Source
Name string - Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
- Configuration
Custom
Log Source Configuration - The configuration for the third-party custom source.
- Event
Classes List<string> - The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
- Source
Version string - Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
- Source
Name string - Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
- Configuration
Custom
Log Source Configuration Args - The configuration for the third-party custom source.
- Event
Classes []string - The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
- Source
Version string - Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
- source
Name String - Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
- configuration
Custom
Log Source Configuration - The configuration for the third-party custom source.
- event
Classes List<String> - The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
- source
Version String - Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
- source
Name string - Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
- configuration
Custom
Log Source Configuration - The configuration for the third-party custom source.
- event
Classes string[] - The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
- source
Version string - Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
- source_
name str - Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
- configuration
Custom
Log Source Configuration Args - The configuration for the third-party custom source.
- event_
classes Sequence[str] - The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
- source_
version str - Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
- source
Name String - Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
- configuration Property Map
- The configuration for the third-party custom source.
- event
Classes List<String> - The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
- source
Version String - Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
Outputs
All input properties are implicitly available as output properties. Additionally, the CustomLogSource resource produces the following output properties:
- Attributes
List<Custom
Log Source Attribute> - The attributes of a third-party custom source.
- Id string
- The provider-assigned unique ID for this managed resource.
- Provider
Details List<CustomLog Source Provider Detail> - The details of the log provider for a third-party custom source.
- Attributes
[]Custom
Log Source Attribute - The attributes of a third-party custom source.
- Id string
- The provider-assigned unique ID for this managed resource.
- Provider
Details []CustomLog Source Provider Detail - The details of the log provider for a third-party custom source.
- attributes
List<Custom
Log Source Attribute> - The attributes of a third-party custom source.
- id String
- The provider-assigned unique ID for this managed resource.
- provider
Details List<CustomLog Source Provider Detail> - The details of the log provider for a third-party custom source.
- attributes
Custom
Log Source Attribute[] - The attributes of a third-party custom source.
- id string
- The provider-assigned unique ID for this managed resource.
- provider
Details CustomLog Source Provider Detail[] - The details of the log provider for a third-party custom source.
- attributes
Sequence[Custom
Log Source Attribute] - The attributes of a third-party custom source.
- id str
- The provider-assigned unique ID for this managed resource.
- provider_
details Sequence[CustomLog Source Provider Detail] - The details of the log provider for a third-party custom source.
- attributes List<Property Map>
- The attributes of a third-party custom source.
- id String
- The provider-assigned unique ID for this managed resource.
- provider
Details List<Property Map> - The details of the log provider for a third-party custom source.
Look up Existing CustomLogSource Resource
Get an existing CustomLogSource 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?: CustomLogSourceState, opts?: CustomResourceOptions): CustomLogSource
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
attributes: Optional[Sequence[CustomLogSourceAttributeArgs]] = None,
configuration: Optional[CustomLogSourceConfigurationArgs] = None,
event_classes: Optional[Sequence[str]] = None,
provider_details: Optional[Sequence[CustomLogSourceProviderDetailArgs]] = None,
source_name: Optional[str] = None,
source_version: Optional[str] = None) -> CustomLogSource
func GetCustomLogSource(ctx *Context, name string, id IDInput, state *CustomLogSourceState, opts ...ResourceOption) (*CustomLogSource, error)
public static CustomLogSource Get(string name, Input<string> id, CustomLogSourceState? state, CustomResourceOptions? opts = null)
public static CustomLogSource get(String name, Output<String> id, CustomLogSourceState 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.
- Attributes
List<Custom
Log Source Attribute> - The attributes of a third-party custom source.
- Configuration
Custom
Log Source Configuration - The configuration for the third-party custom source.
- Event
Classes List<string> - The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
- Provider
Details List<CustomLog Source Provider Detail> - The details of the log provider for a third-party custom source.
- Source
Name string - Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
- Source
Version string - Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
- Attributes
[]Custom
Log Source Attribute Args - The attributes of a third-party custom source.
- Configuration
Custom
Log Source Configuration Args - The configuration for the third-party custom source.
- Event
Classes []string - The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
- Provider
Details []CustomLog Source Provider Detail Args - The details of the log provider for a third-party custom source.
- Source
Name string - Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
- Source
Version string - Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
- attributes
List<Custom
Log Source Attribute> - The attributes of a third-party custom source.
- configuration
Custom
Log Source Configuration - The configuration for the third-party custom source.
- event
Classes List<String> - The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
- provider
Details List<CustomLog Source Provider Detail> - The details of the log provider for a third-party custom source.
- source
Name String - Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
- source
Version String - Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
- attributes
Custom
Log Source Attribute[] - The attributes of a third-party custom source.
- configuration
Custom
Log Source Configuration - The configuration for the third-party custom source.
- event
Classes string[] - The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
- provider
Details CustomLog Source Provider Detail[] - The details of the log provider for a third-party custom source.
- source
Name string - Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
- source
Version string - Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
- attributes
Sequence[Custom
Log Source Attribute Args] - The attributes of a third-party custom source.
- configuration
Custom
Log Source Configuration Args - The configuration for the third-party custom source.
- event_
classes Sequence[str] - The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
- provider_
details Sequence[CustomLog Source Provider Detail Args] - The details of the log provider for a third-party custom source.
- source_
name str - Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
- source_
version str - Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
- attributes List<Property Map>
- The attributes of a third-party custom source.
- configuration Property Map
- The configuration for the third-party custom source.
- event
Classes List<String> - The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
- provider
Details List<Property Map> - The details of the log provider for a third-party custom source.
- source
Name String - Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
- source
Version String - Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
Supporting Types
CustomLogSourceAttribute, CustomLogSourceAttributeArgs
- Crawler
Arn string - The ARN of the AWS Glue crawler.
- Database
Arn string - The ARN of the AWS Glue database where results are written.
- Table
Arn string - The ARN of the AWS Glue table.
- Crawler
Arn string - The ARN of the AWS Glue crawler.
- Database
Arn string - The ARN of the AWS Glue database where results are written.
- Table
Arn string - The ARN of the AWS Glue table.
- crawler
Arn String - The ARN of the AWS Glue crawler.
- database
Arn String - The ARN of the AWS Glue database where results are written.
- table
Arn String - The ARN of the AWS Glue table.
- crawler
Arn string - The ARN of the AWS Glue crawler.
- database
Arn string - The ARN of the AWS Glue database where results are written.
- table
Arn string - The ARN of the AWS Glue table.
- crawler_
arn str - The ARN of the AWS Glue crawler.
- database_
arn str - The ARN of the AWS Glue database where results are written.
- table_
arn str - The ARN of the AWS Glue table.
- crawler
Arn String - The ARN of the AWS Glue crawler.
- database
Arn String - The ARN of the AWS Glue database where results are written.
- table
Arn String - The ARN of the AWS Glue table.
CustomLogSourceConfiguration, CustomLogSourceConfigurationArgs
- Crawler
Configuration CustomLog Source Configuration Crawler Configuration - The configuration for the Glue Crawler for the third-party custom source.
- Provider
Identity CustomLog Source Configuration Provider Identity - The identity of the log provider for the third-party custom source.
- Crawler
Configuration CustomLog Source Configuration Crawler Configuration - The configuration for the Glue Crawler for the third-party custom source.
- Provider
Identity CustomLog Source Configuration Provider Identity - The identity of the log provider for the third-party custom source.
- crawler
Configuration CustomLog Source Configuration Crawler Configuration - The configuration for the Glue Crawler for the third-party custom source.
- provider
Identity CustomLog Source Configuration Provider Identity - The identity of the log provider for the third-party custom source.
- crawler
Configuration CustomLog Source Configuration Crawler Configuration - The configuration for the Glue Crawler for the third-party custom source.
- provider
Identity CustomLog Source Configuration Provider Identity - The identity of the log provider for the third-party custom source.
- crawler_
configuration CustomLog Source Configuration Crawler Configuration - The configuration for the Glue Crawler for the third-party custom source.
- provider_
identity CustomLog Source Configuration Provider Identity - The identity of the log provider for the third-party custom source.
- crawler
Configuration Property Map - The configuration for the Glue Crawler for the third-party custom source.
- provider
Identity Property Map - The identity of the log provider for the third-party custom source.
CustomLogSourceConfigurationCrawlerConfiguration, CustomLogSourceConfigurationCrawlerConfigurationArgs
- Role
Arn string - The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be used by the AWS Glue crawler.
- Role
Arn string - The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be used by the AWS Glue crawler.
- role
Arn String - The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be used by the AWS Glue crawler.
- role
Arn string - The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be used by the AWS Glue crawler.
- role_
arn str - The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be used by the AWS Glue crawler.
- role
Arn String - The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be used by the AWS Glue crawler.
CustomLogSourceConfigurationProviderIdentity, CustomLogSourceConfigurationProviderIdentityArgs
- External
Id string - The external ID used to estalish trust relationship with the AWS identity.
- Principal string
- The AWS identity principal.
- External
Id string - The external ID used to estalish trust relationship with the AWS identity.
- Principal string
- The AWS identity principal.
- external
Id String - The external ID used to estalish trust relationship with the AWS identity.
- principal String
- The AWS identity principal.
- external
Id string - The external ID used to estalish trust relationship with the AWS identity.
- principal string
- The AWS identity principal.
- external_
id str - The external ID used to estalish trust relationship with the AWS identity.
- principal str
- The AWS identity principal.
- external
Id String - The external ID used to estalish trust relationship with the AWS identity.
- principal String
- The AWS identity principal.
CustomLogSourceProviderDetail, CustomLogSourceProviderDetailArgs
Import
Using pulumi import
, import Custom log sources using the source name. For example:
$ pulumi import aws:securitylake/customLogSource:CustomLogSource example example-name
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.
Try AWS Native preview for resources not in the classic version.