Skip to content
Closed
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions deployment/modules/aws/tesseract/test/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ module "storage" {
ephemeral = var.ephemeral
}

# [WARNING]
# Using secrets manager does NOT guarantee the security of the signing keys.
# There are significant security risks if the secrets are mismanaged.
module "secretsmanager" {
source = "../../secretsmanager"

Expand Down
3 changes: 3 additions & 0 deletions deployment/modules/gcp/tesseract/conformance/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ module "storage" {
ephemeral = true
}

# [WARNING]
# Using secret manager does NOT guarantee the security of the signing keys.
# There are significant security risks if the secrets are mismanaged.
module "secretmanager" {
source = "../../secretmanager"

Expand Down
3 changes: 3 additions & 0 deletions deployment/modules/gcp/tesseract/test/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ module "storage" {
ephemeral = false
}

# [WARNING]
# Using secret manager does NOT guarantee the security of the signing keys.
# There are significant security risks if the secrets are mismanaged.
module "secretmanager" {
source = "../../secretmanager"

Expand Down
Loading