Cluster
Provides a Redshift Cluster Resource.
Note: All arguments including the username and password will be stored in the raw state as plain-text.
Example Usage
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var @default = new Aws.RedShift.Cluster("default", new Aws.RedShift.ClusterArgs
{
ClusterIdentifier = "tf-redshift-cluster",
ClusterType = "single-node",
DatabaseName = "mydb",
MasterPassword = "Mustbe8characters",
MasterUsername = "foo",
NodeType = "dc1.large",
});
}
}
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v2/go/aws/redshift"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := redshift.NewCluster(ctx, "_default", &redshift.ClusterArgs{
ClusterIdentifier: pulumi.String("tf-redshift-cluster"),
ClusterType: pulumi.String("single-node"),
DatabaseName: pulumi.String("mydb"),
MasterPassword: pulumi.String("Mustbe8characters"),
MasterUsername: pulumi.String("foo"),
NodeType: pulumi.String("dc1.large"),
})
if err != nil {
return err
}
return nil
})
}import pulumi
import pulumi_aws as aws
default = aws.redshift.Cluster("default",
cluster_identifier="tf-redshift-cluster",
cluster_type="single-node",
database_name="mydb",
master_password="Mustbe8characters",
master_username="foo",
node_type="dc1.large")import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const defaultCluster = new aws.redshift.Cluster("default", {
clusterIdentifier: "tf-redshift-cluster",
clusterType: "single-node",
databaseName: "mydb",
masterPassword: "Mustbe8characters",
masterUsername: "foo",
nodeType: "dc1.large",
});Create a Cluster Resource
new Cluster(name: string, args: ClusterArgs, opts?: CustomResourceOptions);def Cluster(resource_name, opts=None, allow_version_upgrade=None, automated_snapshot_retention_period=None, availability_zone=None, cluster_identifier=None, cluster_parameter_group_name=None, cluster_public_key=None, cluster_revision_number=None, cluster_security_groups=None, cluster_subnet_group_name=None, cluster_type=None, cluster_version=None, database_name=None, elastic_ip=None, encrypted=None, endpoint=None, enhanced_vpc_routing=None, final_snapshot_identifier=None, iam_roles=None, kms_key_id=None, logging=None, master_password=None, master_username=None, node_type=None, number_of_nodes=None, owner_account=None, port=None, preferred_maintenance_window=None, publicly_accessible=None, skip_final_snapshot=None, snapshot_cluster_identifier=None, snapshot_copy=None, snapshot_identifier=None, tags=None, vpc_security_group_ids=None, __props__=None);func NewCluster(ctx *Context, name string, args ClusterArgs, opts ...ResourceOption) (*Cluster, error)public Cluster(string name, ClusterArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args ClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
Cluster Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The Cluster resource accepts the following input properties:
- Cluster
Identifier string The Cluster Identifier. Must be a lower case string.
- Node
Type string The node type to be provisioned for the cluster.
- Allow
Version boolUpgrade If true , major version upgrades can be applied during the maintenance window to the Amazon Redshift engine that is running on the cluster. Default is true
- Automated
Snapshot intRetention Period The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with create-cluster-snapshot. Default is 1.
- Availability
Zone string The EC2 Availability Zone (AZ) in which you want Amazon Redshift to provision the cluster. For example, if you have several EC2 instances running in a specific Availability Zone, then you might want the cluster to be provisioned in the same zone in order to decrease network latency.
- Cluster
Parameter stringGroup Name The name of the parameter group to be associated with this cluster.
- Cluster
Public stringKey The public key for the cluster
- Cluster
Revision stringNumber The specific revision number of the database in the cluster
- Cluster
Security List<string>Groups A list of security groups to be associated with this cluster.
- Cluster
Subnet stringGroup Name The name of a cluster subnet group to be associated with this cluster. If this parameter is not provided the resulting cluster will be deployed outside virtual private cloud (VPC).
- Cluster
Type string The cluster type to use. Either
single-nodeormulti-node.- Cluster
Version string The version of the Amazon Redshift engine software that you want to deploy on the cluster. The version selected runs on all the nodes in the cluster.
- Database
Name string The name of the first database to be created when the cluster is created. If you do not provide a name, Amazon Redshift will create a default database called
dev.- Elastic
Ip string The Elastic IP (EIP) address for the cluster.
- Encrypted bool
If true , the data in the cluster is encrypted at rest.
- Endpoint string
The connection endpoint
- Enhanced
Vpc boolRouting If true , enhanced VPC routing is enabled.
- Final
Snapshot stringIdentifier The identifier of the final snapshot that is to be created immediately before deleting the cluster. If this parameter is provided,
skip_final_snapshotmust be false.- Iam
Roles List<string> A list of IAM Role ARNs to associate with the cluster. A Maximum of 10 can be associated to the cluster at any time.
- Kms
Key stringId The ARN for the KMS encryption key. When specifying
kms_key_id,encryptedneeds to be set to true.- Logging
Cluster
Logging Args Logging, documented below.
- Master
Password string Password for the master DB user. Note that this may show up in logs, and it will be stored in the state file. Password must contain at least 8 chars and contain at least one uppercase letter, one lowercase letter, and one number.
- Master
Username string Username for the master DB user.
- Number
Of intNodes The number of compute nodes in the cluster. This parameter is required when the ClusterType parameter is specified as multi-node. Default is 1.
- Owner
Account string The AWS customer account used to create or copy the snapshot. Required if you are restoring a snapshot you do not own, optional if you own the snapshot.
- Port int
The port number on which the cluster accepts incoming connections. The cluster is accessible only via the JDBC and ODBC connection strings. Part of the connection string requires the port on which the cluster will listen for incoming connections. Default port is 5439.
- Preferred
Maintenance stringWindow The weekly time range (in UTC) during which automated cluster maintenance can occur. Format: ddd:hh24:mi-ddd:hh24:mi
- Publicly
Accessible bool If true, the cluster can be accessed from a public network. Default is
true.- Skip
Final boolSnapshot Determines whether a final snapshot of the cluster is created before Amazon Redshift deletes the cluster. If true , a final cluster snapshot is not created. If false , a final cluster snapshot is created before the cluster is deleted. Default is false.
- Snapshot
Cluster stringIdentifier The name of the cluster the source snapshot was created from.
- Snapshot
Copy ClusterSnapshot Copy Args Configuration of automatic copy of snapshots from one region to another. Documented below.
- Snapshot
Identifier string The name of the snapshot from which to create the new cluster.
- Dictionary<string, string>
A map of tags to assign to the resource.
- Vpc
Security List<string>Group Ids A list of Virtual Private Cloud (VPC) security groups to be associated with the cluster.
- Cluster
Identifier string The Cluster Identifier. Must be a lower case string.
- Node
Type string The node type to be provisioned for the cluster.
- Allow
Version boolUpgrade If true , major version upgrades can be applied during the maintenance window to the Amazon Redshift engine that is running on the cluster. Default is true
- Automated
Snapshot intRetention Period The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with create-cluster-snapshot. Default is 1.
- Availability
Zone string The EC2 Availability Zone (AZ) in which you want Amazon Redshift to provision the cluster. For example, if you have several EC2 instances running in a specific Availability Zone, then you might want the cluster to be provisioned in the same zone in order to decrease network latency.
- Cluster
Parameter stringGroup Name The name of the parameter group to be associated with this cluster.
- Cluster
Public stringKey The public key for the cluster
- Cluster
Revision stringNumber The specific revision number of the database in the cluster
- Cluster
Security []stringGroups A list of security groups to be associated with this cluster.
- Cluster
Subnet stringGroup Name The name of a cluster subnet group to be associated with this cluster. If this parameter is not provided the resulting cluster will be deployed outside virtual private cloud (VPC).
- Cluster
Type string The cluster type to use. Either
single-nodeormulti-node.- Cluster
Version string The version of the Amazon Redshift engine software that you want to deploy on the cluster. The version selected runs on all the nodes in the cluster.
- Database
Name string The name of the first database to be created when the cluster is created. If you do not provide a name, Amazon Redshift will create a default database called
dev.- Elastic
Ip string The Elastic IP (EIP) address for the cluster.
- Encrypted bool
If true , the data in the cluster is encrypted at rest.
- Endpoint string
The connection endpoint
- Enhanced
Vpc boolRouting If true , enhanced VPC routing is enabled.
- Final
Snapshot stringIdentifier The identifier of the final snapshot that is to be created immediately before deleting the cluster. If this parameter is provided,
skip_final_snapshotmust be false.- Iam
Roles []string A list of IAM Role ARNs to associate with the cluster. A Maximum of 10 can be associated to the cluster at any time.
- Kms
Key stringId The ARN for the KMS encryption key. When specifying
kms_key_id,encryptedneeds to be set to true.- Logging
Cluster
Logging Logging, documented below.
- Master
Password string Password for the master DB user. Note that this may show up in logs, and it will be stored in the state file. Password must contain at least 8 chars and contain at least one uppercase letter, one lowercase letter, and one number.
- Master
Username string Username for the master DB user.
- Number
Of intNodes The number of compute nodes in the cluster. This parameter is required when the ClusterType parameter is specified as multi-node. Default is 1.
- Owner
Account string The AWS customer account used to create or copy the snapshot. Required if you are restoring a snapshot you do not own, optional if you own the snapshot.
- Port int
The port number on which the cluster accepts incoming connections. The cluster is accessible only via the JDBC and ODBC connection strings. Part of the connection string requires the port on which the cluster will listen for incoming connections. Default port is 5439.
- Preferred
Maintenance stringWindow The weekly time range (in UTC) during which automated cluster maintenance can occur. Format: ddd:hh24:mi-ddd:hh24:mi
- Publicly
Accessible bool If true, the cluster can be accessed from a public network. Default is
true.- Skip
Final boolSnapshot Determines whether a final snapshot of the cluster is created before Amazon Redshift deletes the cluster. If true , a final cluster snapshot is not created. If false , a final cluster snapshot is created before the cluster is deleted. Default is false.
- Snapshot
Cluster stringIdentifier The name of the cluster the source snapshot was created from.
- Snapshot
Copy ClusterSnapshot Copy Configuration of automatic copy of snapshots from one region to another. Documented below.
- Snapshot
Identifier string The name of the snapshot from which to create the new cluster.
- map[string]string
A map of tags to assign to the resource.
- Vpc
Security []stringGroup Ids A list of Virtual Private Cloud (VPC) security groups to be associated with the cluster.
- cluster
Identifier string The Cluster Identifier. Must be a lower case string.
- node
Type string The node type to be provisioned for the cluster.
- allow
Version booleanUpgrade If true , major version upgrades can be applied during the maintenance window to the Amazon Redshift engine that is running on the cluster. Default is true
- automated
Snapshot numberRetention Period The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with create-cluster-snapshot. Default is 1.
- availability
Zone string The EC2 Availability Zone (AZ) in which you want Amazon Redshift to provision the cluster. For example, if you have several EC2 instances running in a specific Availability Zone, then you might want the cluster to be provisioned in the same zone in order to decrease network latency.
- cluster
Parameter stringGroup Name The name of the parameter group to be associated with this cluster.
- cluster
Public stringKey The public key for the cluster
- cluster
Revision stringNumber The specific revision number of the database in the cluster
- cluster
Security string[]Groups A list of security groups to be associated with this cluster.
- cluster
Subnet stringGroup Name The name of a cluster subnet group to be associated with this cluster. If this parameter is not provided the resulting cluster will be deployed outside virtual private cloud (VPC).
- cluster
Type string The cluster type to use. Either
single-nodeormulti-node.- cluster
Version string The version of the Amazon Redshift engine software that you want to deploy on the cluster. The version selected runs on all the nodes in the cluster.
- database
Name string The name of the first database to be created when the cluster is created. If you do not provide a name, Amazon Redshift will create a default database called
dev.- elastic
Ip string The Elastic IP (EIP) address for the cluster.
- encrypted boolean
If true , the data in the cluster is encrypted at rest.
- endpoint string
The connection endpoint
- enhanced
Vpc booleanRouting If true , enhanced VPC routing is enabled.
- final
Snapshot stringIdentifier The identifier of the final snapshot that is to be created immediately before deleting the cluster. If this parameter is provided,
skip_final_snapshotmust be false.- iam
Roles string[] A list of IAM Role ARNs to associate with the cluster. A Maximum of 10 can be associated to the cluster at any time.
- kms
Key stringId The ARN for the KMS encryption key. When specifying
kms_key_id,encryptedneeds to be set to true.- logging
Cluster
Logging Logging, documented below.
- master
Password string Password for the master DB user. Note that this may show up in logs, and it will be stored in the state file. Password must contain at least 8 chars and contain at least one uppercase letter, one lowercase letter, and one number.
- master
Username string Username for the master DB user.
- number
Of numberNodes The number of compute nodes in the cluster. This parameter is required when the ClusterType parameter is specified as multi-node. Default is 1.
- owner
Account string The AWS customer account used to create or copy the snapshot. Required if you are restoring a snapshot you do not own, optional if you own the snapshot.
- port number
The port number on which the cluster accepts incoming connections. The cluster is accessible only via the JDBC and ODBC connection strings. Part of the connection string requires the port on which the cluster will listen for incoming connections. Default port is 5439.
- preferred
Maintenance stringWindow The weekly time range (in UTC) during which automated cluster maintenance can occur. Format: ddd:hh24:mi-ddd:hh24:mi
- publicly
Accessible boolean If true, the cluster can be accessed from a public network. Default is
true.- skip
Final booleanSnapshot Determines whether a final snapshot of the cluster is created before Amazon Redshift deletes the cluster. If true , a final cluster snapshot is not created. If false , a final cluster snapshot is created before the cluster is deleted. Default is false.
- snapshot
Cluster stringIdentifier The name of the cluster the source snapshot was created from.
- snapshot
Copy ClusterSnapshot Copy Configuration of automatic copy of snapshots from one region to another. Documented below.
- snapshot
Identifier string The name of the snapshot from which to create the new cluster.
- {[key: string]: string}
A map of tags to assign to the resource.
- vpc
Security string[]Group Ids A list of Virtual Private Cloud (VPC) security groups to be associated with the cluster.
- cluster_
identifier str The Cluster Identifier. Must be a lower case string.
- node_
type str The node type to be provisioned for the cluster.
- allow_
version_ boolupgrade If true , major version upgrades can be applied during the maintenance window to the Amazon Redshift engine that is running on the cluster. Default is true
- automated_
snapshot_ floatretention_ period The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with create-cluster-snapshot. Default is 1.
- availability_
zone str The EC2 Availability Zone (AZ) in which you want Amazon Redshift to provision the cluster. For example, if you have several EC2 instances running in a specific Availability Zone, then you might want the cluster to be provisioned in the same zone in order to decrease network latency.
- cluster_
parameter_ strgroup_ name The name of the parameter group to be associated with this cluster.
- cluster_
public_ strkey The public key for the cluster
- cluster_
revision_ strnumber The specific revision number of the database in the cluster
- cluster_
security_ List[str]groups A list of security groups to be associated with this cluster.
- cluster_
subnet_ strgroup_ name The name of a cluster subnet group to be associated with this cluster. If this parameter is not provided the resulting cluster will be deployed outside virtual private cloud (VPC).
- cluster_
type str The cluster type to use. Either
single-nodeormulti-node.- cluster_
version str The version of the Amazon Redshift engine software that you want to deploy on the cluster. The version selected runs on all the nodes in the cluster.
- database_
name str The name of the first database to be created when the cluster is created. If you do not provide a name, Amazon Redshift will create a default database called
dev.- elastic_
ip str The Elastic IP (EIP) address for the cluster.
- encrypted bool
If true , the data in the cluster is encrypted at rest.
- endpoint str
The connection endpoint
- enhanced_
vpc_ boolrouting If true , enhanced VPC routing is enabled.
- final_
snapshot_ stridentifier The identifier of the final snapshot that is to be created immediately before deleting the cluster. If this parameter is provided,
skip_final_snapshotmust be false.- iam_
roles List[str] A list of IAM Role ARNs to associate with the cluster. A Maximum of 10 can be associated to the cluster at any time.
- kms_
key_ strid The ARN for the KMS encryption key. When specifying
kms_key_id,encryptedneeds to be set to true.- logging
Dict[Cluster
Logging] Logging, documented below.
- master_
password str Password for the master DB user. Note that this may show up in logs, and it will be stored in the state file. Password must contain at least 8 chars and contain at least one uppercase letter, one lowercase letter, and one number.
- master_
username str Username for the master DB user.
- number_
of_ floatnodes The number of compute nodes in the cluster. This parameter is required when the ClusterType parameter is specified as multi-node. Default is 1.
- owner_
account str The AWS customer account used to create or copy the snapshot. Required if you are restoring a snapshot you do not own, optional if you own the snapshot.
- port float
The port number on which the cluster accepts incoming connections. The cluster is accessible only via the JDBC and ODBC connection strings. Part of the connection string requires the port on which the cluster will listen for incoming connections. Default port is 5439.
- preferred_
maintenance_ strwindow The weekly time range (in UTC) during which automated cluster maintenance can occur. Format: ddd:hh24:mi-ddd:hh24:mi
- publicly_
accessible bool If true, the cluster can be accessed from a public network. Default is
true.- skip_
final_ boolsnapshot Determines whether a final snapshot of the cluster is created before Amazon Redshift deletes the cluster. If true , a final cluster snapshot is not created. If false , a final cluster snapshot is created before the cluster is deleted. Default is false.
- snapshot_
cluster_ stridentifier The name of the cluster the source snapshot was created from.
- snapshot_
copy Dict[ClusterSnapshot Copy] Configuration of automatic copy of snapshots from one region to another. Documented below.
- snapshot_
identifier str The name of the snapshot from which to create the new cluster.
- Dict[str, str]
A map of tags to assign to the resource.
- vpc_
security_ List[str]group_ ids A list of Virtual Private Cloud (VPC) security groups to be associated with the cluster.
Outputs
All input properties are implicitly available as output properties. Additionally, the Cluster resource produces the following output properties:
Look up an Existing Cluster Resource
Get an existing Cluster 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?: ClusterState, opts?: CustomResourceOptions): Clusterstatic get(resource_name, id, opts=None, allow_version_upgrade=None, arn=None, automated_snapshot_retention_period=None, availability_zone=None, cluster_identifier=None, cluster_parameter_group_name=None, cluster_public_key=None, cluster_revision_number=None, cluster_security_groups=None, cluster_subnet_group_name=None, cluster_type=None, cluster_version=None, database_name=None, dns_name=None, elastic_ip=None, encrypted=None, endpoint=None, enhanced_vpc_routing=None, final_snapshot_identifier=None, iam_roles=None, kms_key_id=None, logging=None, master_password=None, master_username=None, node_type=None, number_of_nodes=None, owner_account=None, port=None, preferred_maintenance_window=None, publicly_accessible=None, skip_final_snapshot=None, snapshot_cluster_identifier=None, snapshot_copy=None, snapshot_identifier=None, tags=None, vpc_security_group_ids=None, __props__=None);func GetCluster(ctx *Context, name string, id IDInput, state *ClusterState, opts ...ResourceOption) (*Cluster, error)public static Cluster Get(string name, Input<string> id, ClusterState? state, CustomResourceOptions? opts = null)- 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.
The following state arguments are supported:
- Allow
Version boolUpgrade If true , major version upgrades can be applied during the maintenance window to the Amazon Redshift engine that is running on the cluster. Default is true
- Arn string
Amazon Resource Name (ARN) of cluster
- Automated
Snapshot intRetention Period The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with create-cluster-snapshot. Default is 1.
- Availability
Zone string The EC2 Availability Zone (AZ) in which you want Amazon Redshift to provision the cluster. For example, if you have several EC2 instances running in a specific Availability Zone, then you might want the cluster to be provisioned in the same zone in order to decrease network latency.
- Cluster
Identifier string The Cluster Identifier. Must be a lower case string.
- Cluster
Parameter stringGroup Name The name of the parameter group to be associated with this cluster.
- Cluster
Public stringKey The public key for the cluster
- Cluster
Revision stringNumber The specific revision number of the database in the cluster
- Cluster
Security List<string>Groups A list of security groups to be associated with this cluster.
- Cluster
Subnet stringGroup Name The name of a cluster subnet group to be associated with this cluster. If this parameter is not provided the resulting cluster will be deployed outside virtual private cloud (VPC).
- Cluster
Type string The cluster type to use. Either
single-nodeormulti-node.- Cluster
Version string The version of the Amazon Redshift engine software that you want to deploy on the cluster. The version selected runs on all the nodes in the cluster.
- Database
Name string The name of the first database to be created when the cluster is created. If you do not provide a name, Amazon Redshift will create a default database called
dev.- Dns
Name string The DNS name of the cluster
- Elastic
Ip string The Elastic IP (EIP) address for the cluster.
- Encrypted bool
If true , the data in the cluster is encrypted at rest.
- Endpoint string
The connection endpoint
- Enhanced
Vpc boolRouting If true , enhanced VPC routing is enabled.
- Final
Snapshot stringIdentifier The identifier of the final snapshot that is to be created immediately before deleting the cluster. If this parameter is provided,
skip_final_snapshotmust be false.- Iam
Roles List<string> A list of IAM Role ARNs to associate with the cluster. A Maximum of 10 can be associated to the cluster at any time.
- Kms
Key stringId The ARN for the KMS encryption key. When specifying
kms_key_id,encryptedneeds to be set to true.- Logging
Cluster
Logging Args Logging, documented below.
- Master
Password string Password for the master DB user. Note that this may show up in logs, and it will be stored in the state file. Password must contain at least 8 chars and contain at least one uppercase letter, one lowercase letter, and one number.
- Master
Username string Username for the master DB user.
- Node
Type string The node type to be provisioned for the cluster.
- Number
Of intNodes The number of compute nodes in the cluster. This parameter is required when the ClusterType parameter is specified as multi-node. Default is 1.
- Owner
Account string The AWS customer account used to create or copy the snapshot. Required if you are restoring a snapshot you do not own, optional if you own the snapshot.
- Port int
The port number on which the cluster accepts incoming connections. The cluster is accessible only via the JDBC and ODBC connection strings. Part of the connection string requires the port on which the cluster will listen for incoming connections. Default port is 5439.
- Preferred
Maintenance stringWindow The weekly time range (in UTC) during which automated cluster maintenance can occur. Format: ddd:hh24:mi-ddd:hh24:mi
- Publicly
Accessible bool If true, the cluster can be accessed from a public network. Default is
true.- Skip
Final boolSnapshot Determines whether a final snapshot of the cluster is created before Amazon Redshift deletes the cluster. If true , a final cluster snapshot is not created. If false , a final cluster snapshot is created before the cluster is deleted. Default is false.
- Snapshot
Cluster stringIdentifier The name of the cluster the source snapshot was created from.
- Snapshot
Copy ClusterSnapshot Copy Args Configuration of automatic copy of snapshots from one region to another. Documented below.
- Snapshot
Identifier string The name of the snapshot from which to create the new cluster.
- Dictionary<string, string>
A map of tags to assign to the resource.
- Vpc
Security List<string>Group Ids A list of Virtual Private Cloud (VPC) security groups to be associated with the cluster.
- Allow
Version boolUpgrade If true , major version upgrades can be applied during the maintenance window to the Amazon Redshift engine that is running on the cluster. Default is true
- Arn string
Amazon Resource Name (ARN) of cluster
- Automated
Snapshot intRetention Period The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with create-cluster-snapshot. Default is 1.
- Availability
Zone string The EC2 Availability Zone (AZ) in which you want Amazon Redshift to provision the cluster. For example, if you have several EC2 instances running in a specific Availability Zone, then you might want the cluster to be provisioned in the same zone in order to decrease network latency.
- Cluster
Identifier string The Cluster Identifier. Must be a lower case string.
- Cluster
Parameter stringGroup Name The name of the parameter group to be associated with this cluster.
- Cluster
Public stringKey The public key for the cluster
- Cluster
Revision stringNumber The specific revision number of the database in the cluster
- Cluster
Security []stringGroups A list of security groups to be associated with this cluster.
- Cluster
Subnet stringGroup Name The name of a cluster subnet group to be associated with this cluster. If this parameter is not provided the resulting cluster will be deployed outside virtual private cloud (VPC).
- Cluster
Type string The cluster type to use. Either
single-nodeormulti-node.- Cluster
Version string The version of the Amazon Redshift engine software that you want to deploy on the cluster. The version selected runs on all the nodes in the cluster.
- Database
Name string The name of the first database to be created when the cluster is created. If you do not provide a name, Amazon Redshift will create a default database called
dev.- Dns
Name string The DNS name of the cluster
- Elastic
Ip string The Elastic IP (EIP) address for the cluster.
- Encrypted bool
If true , the data in the cluster is encrypted at rest.
- Endpoint string
The connection endpoint
- Enhanced
Vpc boolRouting If true , enhanced VPC routing is enabled.
- Final
Snapshot stringIdentifier The identifier of the final snapshot that is to be created immediately before deleting the cluster. If this parameter is provided,
skip_final_snapshotmust be false.- Iam
Roles []string A list of IAM Role ARNs to associate with the cluster. A Maximum of 10 can be associated to the cluster at any time.
- Kms
Key stringId The ARN for the KMS encryption key. When specifying
kms_key_id,encryptedneeds to be set to true.- Logging
Cluster
Logging Logging, documented below.
- Master
Password string Password for the master DB user. Note that this may show up in logs, and it will be stored in the state file. Password must contain at least 8 chars and contain at least one uppercase letter, one lowercase letter, and one number.
- Master
Username string Username for the master DB user.
- Node
Type string The node type to be provisioned for the cluster.
- Number
Of intNodes The number of compute nodes in the cluster. This parameter is required when the ClusterType parameter is specified as multi-node. Default is 1.
- Owner
Account string The AWS customer account used to create or copy the snapshot. Required if you are restoring a snapshot you do not own, optional if you own the snapshot.
- Port int
The port number on which the cluster accepts incoming connections. The cluster is accessible only via the JDBC and ODBC connection strings. Part of the connection string requires the port on which the cluster will listen for incoming connections. Default port is 5439.
- Preferred
Maintenance stringWindow The weekly time range (in UTC) during which automated cluster maintenance can occur. Format: ddd:hh24:mi-ddd:hh24:mi
- Publicly
Accessible bool If true, the cluster can be accessed from a public network. Default is
true.- Skip
Final boolSnapshot Determines whether a final snapshot of the cluster is created before Amazon Redshift deletes the cluster. If true , a final cluster snapshot is not created. If false , a final cluster snapshot is created before the cluster is deleted. Default is false.
- Snapshot
Cluster stringIdentifier The name of the cluster the source snapshot was created from.
- Snapshot
Copy ClusterSnapshot Copy Configuration of automatic copy of snapshots from one region to another. Documented below.
- Snapshot
Identifier string The name of the snapshot from which to create the new cluster.
- map[string]string
A map of tags to assign to the resource.
- Vpc
Security []stringGroup Ids A list of Virtual Private Cloud (VPC) security groups to be associated with the cluster.
- allow
Version booleanUpgrade If true , major version upgrades can be applied during the maintenance window to the Amazon Redshift engine that is running on the cluster. Default is true
- arn string
Amazon Resource Name (ARN) of cluster
- automated
Snapshot numberRetention Period The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with create-cluster-snapshot. Default is 1.
- availability
Zone string The EC2 Availability Zone (AZ) in which you want Amazon Redshift to provision the cluster. For example, if you have several EC2 instances running in a specific Availability Zone, then you might want the cluster to be provisioned in the same zone in order to decrease network latency.
- cluster
Identifier string The Cluster Identifier. Must be a lower case string.
- cluster
Parameter stringGroup Name The name of the parameter group to be associated with this cluster.
- cluster
Public stringKey The public key for the cluster
- cluster
Revision stringNumber The specific revision number of the database in the cluster
- cluster
Security string[]Groups A list of security groups to be associated with this cluster.
- cluster
Subnet stringGroup Name The name of a cluster subnet group to be associated with this cluster. If this parameter is not provided the resulting cluster will be deployed outside virtual private cloud (VPC).
- cluster
Type string The cluster type to use. Either
single-nodeormulti-node.- cluster
Version string The version of the Amazon Redshift engine software that you want to deploy on the cluster. The version selected runs on all the nodes in the cluster.
- database
Name string The name of the first database to be created when the cluster is created. If you do not provide a name, Amazon Redshift will create a default database called
dev.- dns
Name string The DNS name of the cluster
- elastic
Ip string The Elastic IP (EIP) address for the cluster.
- encrypted boolean
If true , the data in the cluster is encrypted at rest.
- endpoint string
The connection endpoint
- enhanced
Vpc booleanRouting If true , enhanced VPC routing is enabled.
- final
Snapshot stringIdentifier The identifier of the final snapshot that is to be created immediately before deleting the cluster. If this parameter is provided,
skip_final_snapshotmust be false.- iam
Roles string[] A list of IAM Role ARNs to associate with the cluster. A Maximum of 10 can be associated to the cluster at any time.
- kms
Key stringId The ARN for the KMS encryption key. When specifying
kms_key_id,encryptedneeds to be set to true.- logging
Cluster
Logging Logging, documented below.
- master
Password string Password for the master DB user. Note that this may show up in logs, and it will be stored in the state file. Password must contain at least 8 chars and contain at least one uppercase letter, one lowercase letter, and one number.
- master
Username string Username for the master DB user.
- node
Type string The node type to be provisioned for the cluster.
- number
Of numberNodes The number of compute nodes in the cluster. This parameter is required when the ClusterType parameter is specified as multi-node. Default is 1.
- owner
Account string The AWS customer account used to create or copy the snapshot. Required if you are restoring a snapshot you do not own, optional if you own the snapshot.
- port number
The port number on which the cluster accepts incoming connections. The cluster is accessible only via the JDBC and ODBC connection strings. Part of the connection string requires the port on which the cluster will listen for incoming connections. Default port is 5439.
- preferred
Maintenance stringWindow The weekly time range (in UTC) during which automated cluster maintenance can occur. Format: ddd:hh24:mi-ddd:hh24:mi
- publicly
Accessible boolean If true, the cluster can be accessed from a public network. Default is
true.- skip
Final booleanSnapshot Determines whether a final snapshot of the cluster is created before Amazon Redshift deletes the cluster. If true , a final cluster snapshot is not created. If false , a final cluster snapshot is created before the cluster is deleted. Default is false.
- snapshot
Cluster stringIdentifier The name of the cluster the source snapshot was created from.
- snapshot
Copy ClusterSnapshot Copy Configuration of automatic copy of snapshots from one region to another. Documented below.
- snapshot
Identifier string The name of the snapshot from which to create the new cluster.
- {[key: string]: string}
A map of tags to assign to the resource.
- vpc
Security string[]Group Ids A list of Virtual Private Cloud (VPC) security groups to be associated with the cluster.
- allow_
version_ boolupgrade If true , major version upgrades can be applied during the maintenance window to the Amazon Redshift engine that is running on the cluster. Default is true
- arn str
Amazon Resource Name (ARN) of cluster
- automated_
snapshot_ floatretention_ period The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with create-cluster-snapshot. Default is 1.
- availability_
zone str The EC2 Availability Zone (AZ) in which you want Amazon Redshift to provision the cluster. For example, if you have several EC2 instances running in a specific Availability Zone, then you might want the cluster to be provisioned in the same zone in order to decrease network latency.
- cluster_
identifier str The Cluster Identifier. Must be a lower case string.
- cluster_
parameter_ strgroup_ name The name of the parameter group to be associated with this cluster.
- cluster_
public_ strkey The public key for the cluster
- cluster_
revision_ strnumber The specific revision number of the database in the cluster
- cluster_
security_ List[str]groups A list of security groups to be associated with this cluster.
- cluster_
subnet_ strgroup_ name The name of a cluster subnet group to be associated with this cluster. If this parameter is not provided the resulting cluster will be deployed outside virtual private cloud (VPC).
- cluster_
type str The cluster type to use. Either
single-nodeormulti-node.- cluster_
version str The version of the Amazon Redshift engine software that you want to deploy on the cluster. The version selected runs on all the nodes in the cluster.
- database_
name str The name of the first database to be created when the cluster is created. If you do not provide a name, Amazon Redshift will create a default database called
dev.- dns_
name str The DNS name of the cluster
- elastic_
ip str The Elastic IP (EIP) address for the cluster.
- encrypted bool
If true , the data in the cluster is encrypted at rest.
- endpoint str
The connection endpoint
- enhanced_
vpc_ boolrouting If true , enhanced VPC routing is enabled.
- final_
snapshot_ stridentifier The identifier of the final snapshot that is to be created immediately before deleting the cluster. If this parameter is provided,
skip_final_snapshotmust be false.- iam_
roles List[str] A list of IAM Role ARNs to associate with the cluster. A Maximum of 10 can be associated to the cluster at any time.
- kms_
key_ strid The ARN for the KMS encryption key. When specifying
kms_key_id,encryptedneeds to be set to true.- logging
Dict[Cluster
Logging] Logging, documented below.
- master_
password str Password for the master DB user. Note that this may show up in logs, and it will be stored in the state file. Password must contain at least 8 chars and contain at least one uppercase letter, one lowercase letter, and one number.
- master_
username str Username for the master DB user.
- node_
type str The node type to be provisioned for the cluster.
- number_
of_ floatnodes The number of compute nodes in the cluster. This parameter is required when the ClusterType parameter is specified as multi-node. Default is 1.
- owner_
account str The AWS customer account used to create or copy the snapshot. Required if you are restoring a snapshot you do not own, optional if you own the snapshot.
- port float
The port number on which the cluster accepts incoming connections. The cluster is accessible only via the JDBC and ODBC connection strings. Part of the connection string requires the port on which the cluster will listen for incoming connections. Default port is 5439.
- preferred_
maintenance_ strwindow The weekly time range (in UTC) during which automated cluster maintenance can occur. Format: ddd:hh24:mi-ddd:hh24:mi
- publicly_
accessible bool If true, the cluster can be accessed from a public network. Default is
true.- skip_
final_ boolsnapshot Determines whether a final snapshot of the cluster is created before Amazon Redshift deletes the cluster. If true , a final cluster snapshot is not created. If false , a final cluster snapshot is created before the cluster is deleted. Default is false.
- snapshot_
cluster_ stridentifier The name of the cluster the source snapshot was created from.
- snapshot_
copy Dict[ClusterSnapshot Copy] Configuration of automatic copy of snapshots from one region to another. Documented below.
- snapshot_
identifier str The name of the snapshot from which to create the new cluster.
- Dict[str, str]
A map of tags to assign to the resource.
- vpc_
security_ List[str]group_ ids A list of Virtual Private Cloud (VPC) security groups to be associated with the cluster.
Supporting Types
ClusterLogging
- Enable bool
Enables logging information such as queries and connection attempts, for the specified Amazon Redshift cluster.
- Bucket
Name string The name of an existing S3 bucket where the log files are to be stored. Must be in the same region as the cluster and the cluster must have read bucket and put object permissions. For more information on the permissions required for the bucket, please read the AWS documentation
- S3Key
Prefix string The prefix applied to the log file names.
- Enable bool
Enables logging information such as queries and connection attempts, for the specified Amazon Redshift cluster.
- Bucket
Name string The name of an existing S3 bucket where the log files are to be stored. Must be in the same region as the cluster and the cluster must have read bucket and put object permissions. For more information on the permissions required for the bucket, please read the AWS documentation
- S3Key
Prefix string The prefix applied to the log file names.
- enable boolean
Enables logging information such as queries and connection attempts, for the specified Amazon Redshift cluster.
- bucket
Name string The name of an existing S3 bucket where the log files are to be stored. Must be in the same region as the cluster and the cluster must have read bucket and put object permissions. For more information on the permissions required for the bucket, please read the AWS documentation
- s3Key
Prefix string The prefix applied to the log file names.
- enable bool
Enables logging information such as queries and connection attempts, for the specified Amazon Redshift cluster.
- bucket_
name str The name of an existing S3 bucket where the log files are to be stored. Must be in the same region as the cluster and the cluster must have read bucket and put object permissions. For more information on the permissions required for the bucket, please read the AWS documentation
- s3_
key_ strprefix The prefix applied to the log file names.
ClusterSnapshotCopy
- Destination
Region string The destination region that you want to copy snapshots to.
- Grant
Name string The name of the snapshot copy grant to use when snapshots of an AWS KMS-encrypted cluster are copied to the destination region.
- Retention
Period int The number of days to retain automated snapshots in the destination region after they are copied from the source region. Defaults to
7.
- Destination
Region string The destination region that you want to copy snapshots to.
- Grant
Name string The name of the snapshot copy grant to use when snapshots of an AWS KMS-encrypted cluster are copied to the destination region.
- Retention
Period int The number of days to retain automated snapshots in the destination region after they are copied from the source region. Defaults to
7.
- destination
Region string The destination region that you want to copy snapshots to.
- grant
Name string The name of the snapshot copy grant to use when snapshots of an AWS KMS-encrypted cluster are copied to the destination region.
- retention
Period number The number of days to retain automated snapshots in the destination region after they are copied from the source region. Defaults to
7.
- destination
Region str The destination region that you want to copy snapshots to.
- grant
Name str The name of the snapshot copy grant to use when snapshots of an AWS KMS-encrypted cluster are copied to the destination region.
- retention_
period float The number of days to retain automated snapshots in the destination region after they are copied from the source region. Defaults to
7.
Package Details
- Repository
- https://github.com/pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.