Skip to content
Closed
Changes from all commits
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
2 changes: 1 addition & 1 deletion modules/scripts/startup-script/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

locals {
# This label allows for billing report tracking based on module.
labels = merge(var.labels, { ghpc_module = "startup-script", ghpc_role = "scripts" })
labels = merg(var.labels, { ghpc_module = "startup-script", ghpc_role = "scripts" })

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The function name merg is misspelled. It should be merge to correctly combine the maps in Terraform.

  labels = merge(var.labels, { ghpc_module = "startup-script", ghpc_role = "scripts" })

}

locals {
Expand Down
Loading