We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcbaa08 commit 0e6da86Copy full SHA for 0e6da86
main.tf
@@ -101,7 +101,7 @@ resource "aws_redshift_cluster" "this" {
101
################################################################################
102
103
resource "aws_redshift_cluster_iam_roles" "this" {
104
- count = var.create && length(var.iam_role_arns) > 0 && var.default_iam_role_arn != null ? 1 : 0
+ count = var.create && length(var.iam_role_arns) > 0 ? 1 : 0
105
106
cluster_identifier = aws_redshift_cluster.this[0].id
107
iam_role_arns = var.iam_role_arns
0 commit comments