Skip to content

Commit

Permalink
feat: fourthwall webhook slug (#366)
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldietzler authored Jan 31, 2025
1 parent fbba380 commit 02dac12
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions tf/deployment/modules/1password/account/k8s-secrets.tf
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,27 @@ resource "onepassword_item" "bot_github_webhook_slug" {
}
}

resource "random_password" "bot_fourthwall_webhook_slug" {
length = 40
special = false
}

resource "onepassword_item" "bot_fourthwall_webhook_slug" {
vault = data.onepassword_vault.kubernetes.uuid
title = "bot-fourthwall-webhook-slug"
category = "secure_note"

section {
label = "Fourthwall webhook slug for the bot"

field {
label = "FOURTHWALL_SLUG"
type = "CONCEALED"
value = random_password.bot_fourthwall_webhook_slug.result
}
}
}

resource "random_password" "hedgedoc_oauth_secret" {
length = 40
special = false
Expand Down

0 comments on commit 02dac12

Please sign in to comment.