Skip to content

Commit

Permalink
Remove unused variable identifier_prefix (#36)
Browse files Browse the repository at this point in the history
* Remove unused variable identifier_prefix

* Remove identifier_prefix from README
  • Loading branch information
StephenKing authored and antonbabenko committed Apr 25, 2019
1 parent 21450fd commit 1ae2475
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ Terraform documentation is generated automatically using [pre-commit hooks](http
| final\_snapshot\_identifier\_prefix | The prefix name to use when creating a final snapshot on cluster destroy, appends a random 8 digits to name to ensure it's unique too. | string | `"final"` | no |
| global\_cluster\_identifier | The global cluster identifier specified on aws_rds_global_cluster | string | `""` | no |
| iam\_database\_authentication\_enabled | Specifies whether IAM Database authentication should be enabled or not. Not all versions and instances are supported. Refer to the AWS documentation to see which versions are supported. | string | `"false"` | no |
| identifier\_prefix | Prefix for cluster and instance identifier | string | `""` | no |
| instance\_type | Instance type to use | string | n/a | yes |
| kms\_key\_id | The ARN for the KMS encryption key if one is set to the cluster. | string | `""` | no |
| monitoring\_interval | The interval (seconds) between points when Enhanced Monitoring metrics are collected | string | `"0"` | no |
Expand Down
5 changes: 0 additions & 5 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@ variable "subnets" {
type = "list"
}

variable "identifier_prefix" {
description = "Prefix for cluster and instance identifier"
default = ""
}

variable "replica_count" {
description = "Number of reader nodes to create. If `replica_scale_enable` is `true`, the value of `replica_scale_min` is used instead."
default = 1
Expand Down

0 comments on commit 1ae2475

Please sign in to comment.