Skip to content

Commit

Permalink
Update variables.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
NealKaviratna authored Jan 20, 2022
1 parent 592a919 commit 956b9b3
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@ variable "iam_role_name" {
}

variable "tunable_parameter_group_arns" {
description = <<- EOT
Pass in the parameter group ARNs that you would like to allow OtterTune to optimize.
Leave blank if you would like to run OtterTune in monitoring-only mode for now. This can be updated later.
ARN Format: arn:aws:rds:<region>:<account>:pg:<name>.
EOT
description = <<-EOT
Pass in the parameter group ARNs that you would like to allow OtterTune to optimize.
Leave blank if you would like to run OtterTune in monitoring-only mode for now. This can be updated later.
ARN Format: arn:aws:rds:<region>:<account>:pg:<name>.
EOT
type = list(string)
default = []
}

#
variable "tunable_aurora_cluster_parameter_group_arns" {
description = <<- EOT
Pass in the aurora cluster parameter group ARNs that you would like to allow OtterTune to optimize.
Leave blank if you would like to run OtterTune in monitoring-only mode for now. This can be updated later.
ARN Format: arn:aws:rds:<region>:<account>:pg:<name>
EOT
description = <<-EOT
Pass in the aurora cluster parameter group ARNs that you would like to allow OtterTune to optimize.
Leave blank if you would like to run OtterTune in monitoring-only mode for now. This can be updated later.
ARN Format: arn:aws:rds:<region>:<account>:pg:<name>
EOT
type = list(string)
default = []
}
Expand Down

0 comments on commit 956b9b3

Please sign in to comment.