Skip to content

[Automated Preview][terraform-aws-data-storage] Fix Redshift cluster creation error by updating deprecated instance type #2660

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ module "redshift" {
# be associated to the cluster at any time.
iam_roles = null

# The instance type to use for the db (e.g. dc2.large). This field is
# The instance type to use for the db (e.g. ra3.large). This field is
# mandatory for provisioned Redshift.
instance_type = null

Expand Down Expand Up @@ -205,6 +205,9 @@ module "redshift" {
# names.
logging_s3_key_prefix = null

# The name of the maintenance track to apply to the cluster.
maintenance_track_name = null

# The weekly day and time range during which system maintenance can occur
# (e.g. wed:04:00-wed:04:30). Time zone is UTC. Performance may be degraded or
# there may even be a downtime during maintenance windows.
Expand Down Expand Up @@ -407,7 +410,7 @@ inputs = {
# be associated to the cluster at any time.
iam_roles = null

# The instance type to use for the db (e.g. dc2.large). This field is
# The instance type to use for the db (e.g. ra3.large). This field is
# mandatory for provisioned Redshift.
instance_type = null

Expand Down Expand Up @@ -435,6 +438,9 @@ inputs = {
# names.
logging_s3_key_prefix = null

# The name of the maintenance track to apply to the cluster.
maintenance_track_name = null

# The weekly day and time range during which system maintenance can occur
# (e.g. wed:04:00-wed:04:30). Time zone is UTC. Performance may be degraded or
# there may even be a downtime during maintenance windows.
Expand Down Expand Up @@ -747,7 +753,7 @@ A list of IAM Role ARNs to associate with the cluster. A Maximum of 10 can be as
<HclListItem name="instance_type" requirement="optional" type="string">
<HclListItemDescription>

The instance type to use for the db (e.g. dc2.large). This field is mandatory for provisioned Redshift.
The instance type to use for the db (e.g. ra3.large). This field is mandatory for provisioned Redshift.

</HclListItemDescription>
<HclListItemDefaultValue defaultValue="null"/>
Expand Down Expand Up @@ -807,6 +813,15 @@ Required when log_destination_type is s3. Prefix applied to the log file names.
<HclListItemDefaultValue defaultValue="null"/>
</HclListItem>

<HclListItem name="maintenance_track_name" requirement="optional" type="string">
<HclListItemDescription>

The name of the maintenance track to apply to the cluster.

</HclListItemDescription>
<HclListItemDefaultValue defaultValue="null"/>
</HclListItem>

<HclListItem name="maintenance_window" requirement="optional" type="string">
<HclListItemDescription>

Expand Down Expand Up @@ -1044,6 +1059,6 @@ The ID of the Security Group that controls access to the cluster
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.6/modules/redshift/outputs.tf"
],
"sourcePlugin": "module-catalog-api",
"hash": "e641728f4fdc09ee7c67eab5808a64fc"
"hash": "9266ef2ffba5c03f441846156d2de3b3"
}
##DOCS-SOURCER-END -->