Skip to content
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

Add option to limit output id length #98

Merged
merged 9 commits into from
Aug 26, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Rename max_id_length to id_max_length
  • Loading branch information
Nuru authored Aug 26, 2020
commit 23bd73ad45aa1d7c686aebff3865439f30eb9674
5 changes: 2 additions & 3 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
output "id" {
value = local.enabled ? local.id : ""
description = "Disambiguated ID restricted to max_id_length"
description = "Disambiguated ID restricted to id_max_length"
}

output "id_full" {
value = local.enabled ? local.id_full : ""
description = "Disambiguated ID not restricted to max_id_length"
description = "Disambiguated ID not restricted to id_max_length"
}

output "name" {
Expand Down Expand Up @@ -57,4 +57,3 @@ output "label_order" {
value = local.label_order
description = "The naming order of the id output and Name tag"
}

2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ variable "regex_replace_chars" {
description = "Regex to replace chars with empty string in `namespace`, `environment`, `stage` and `name`. By default only hyphens, letters and digits are allowed, all other chars are removed"
}

variable "max_id_length" {
variable "id_max_length" {
type = number
default = 0
description = "Specify the max length of the `id` output, or 0 for unrestricted length"
Expand Down