We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bcbc8e commit b02238fCopy full SHA for b02238f
main.tf
@@ -134,7 +134,7 @@ resource "random_string" "name_suffix" {
134
135
locals {
136
name = join("-", [local.resource_name, random_string.name_suffix.result])
137
- fullname = join("-", [local.namespace, local.name])
+ fullname = format("walrus-%s", md5(join("-", [local.namespace, local.name])))
138
description = "Created by Walrus catalog, and provisioned by Terraform."
139
password = coalesce(var.password, random_password.password.result)
140
0 commit comments