Viewing docs for AWS QuickStart Redshift v0.0.3
published on Friday, Oct 15, 2021 by DEPRECATED
published on Friday, Oct 15, 2021 by DEPRECATED
AWS QuickStart Redshift
I want to use the Pulumi AWS QuickStart Redshift package (aws-quickstart-redshift) in my project.
## Provider details
- Package: aws-quickstart-redshift
- Version: v0.0.3
- Publisher: DEPRECATED
- Source: pulumi
- Repository: https://github.com/pulumi/pulumi-aws-quickstart-redshift
Help me get started using this provider. Show me a complete Pulumi program that provisions a common resource, including all necessary configuration and imports.
Viewing docs for AWS QuickStart Redshift v0.0.3
published on Friday, Oct 15, 2021 by DEPRECATED
published on Friday, Oct 15, 2021 by DEPRECATED
Easily create AWS Redshift Cluster based on the AWS QuickStart Redshift guide as a package available in all Pulumi languages.
Example
const cluster = new redshift.Cluster("demo-cluster", {
vpcID: "<vpcID>",
subnetIDs: "<privateSubnetIDList>",
dbMasterPassword: pulumi.secret("Password1!"),
dbMasterUsername: "test-username",
dbName: "test_database",
dbNodeType: "dc2.large",
dbClusterIdentifier: "demo-cluster",
enableEventSubscription: false,
})
Viewing docs for AWS QuickStart Redshift v0.0.3
published on Friday, Oct 15, 2021 by DEPRECATED
published on Friday, Oct 15, 2021 by DEPRECATED