Merge pull request #121 from kube-hetzner/random-string-node

Random string node
This commit is contained in:
Karim Naufal 2022-03-09 09:32:50 +01:00 committed by GitHub
commit cb571e92b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 3 deletions

View File

@ -12,5 +12,5 @@ locals {
ssh_args = "-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i ${local.ssh_identity_file}"
# the hosts name with its unique suffix attached
name = "${var.name}-${random_pet.server.id}"
name = "${var.name}-${random_string.server.id}"
}

View File

@ -1,5 +1,10 @@
resource "random_pet" "server" {
length = 1
resource "random_string" "server" {
length = 3
lower = true
special = false
number = false
upper = false
keepers = {
# We re-create the id (and server) whenever one of those attributes
# changes. This should include all input variables to this module,