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 3bcd407 commit 0d2eff2Copy full SHA for 0d2eff2
main.tf
@@ -30,6 +30,7 @@ resource "aws_redshift_cluster" "this" {
30
cluster_parameter_group_name = local.parameter_group_name
31
32
publicly_accessible = var.publicly_accessible
33
+ elastic_ip = var.elastic_ip
34
35
# Restore from snapshot
36
snapshot_identifier = var.snapshot_identifier
variables.tf
@@ -221,3 +221,9 @@ variable "max_concurrency_scaling_clusters" {
221
type = string
222
default = "1"
223
}
224
+
225
+variable "elastic_ip" {
226
+ description = "(Optional) The Elastic IP (EIP) address for the cluster."
227
+ type = string
228
+ default = null
229
+}
0 commit comments