Skip to content

Commit

Permalink
fix: Fix secret prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
m1sk9 committed Sep 1, 2024
1 parent a7231d8 commit 5add88b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ variable "minecraft__idea_reaction_redmine_api_key" {
sensitive = true
}

variable "minecraft__babyrite_discord_token" {
variable "discord_bot__babyrite_discord_token" {
description = "Token set to the production babyrite"
type = string
sensitive = true
Expand Down
2 changes: 1 addition & 1 deletion terraform/onp_cluster_secrets.tf
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,6 @@ resource "kubernetes_secret" "babyrite_discord_token" {
}

data = {
BABYRITE_DISCORD_TOKEN = var.minecraft__babyrite_discord_token
BABYRITE_DISCORD_TOKEN = var.discord_bot__babyrite_discord_token
}
}

0 comments on commit 5add88b

Please sign in to comment.