Skip to content

Commit

Permalink
fix: bucket name too long
Browse files Browse the repository at this point in the history
  • Loading branch information
kfc-manager committed Mar 6, 2024
1 parent 6a28524 commit bd2f934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
################################

resource "random_string" "suffix" {
length = 63 - length(var.identifier)
length = 63 - length(var.identifier) - 1
special = false
upper = false
}
Expand Down

0 comments on commit bd2f934

Please sign in to comment.