Skip to content
Merged
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
1 change: 1 addition & 0 deletions gcp/modules/sigstore/sigstore.tf
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ module "fulcio" {
// Certificate authority
ca_pool_name = var.ca_pool_name
ca_name = var.ca_name
ca_type = var.ca_type

// KMS
fulcio_keyring_name = var.fulcio_keyring_name
Expand Down
6 changes: 6 additions & 0 deletions gcp/modules/sigstore/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,12 @@ variable "ca_name" {
default = "sigstore-authority"
}

variable "ca_type" {
description = "What kind of CA Fulcio is running and therefore what kind of key to create. Possible values are 'kmsca' or 'tinkca'. Defaults to 'kmsca' which creates an asymmetric signing key. Use 'tinkca' to create a symmetric encryption/decryption key."
type = string
default = "kmsca"
}

variable "fulcio_keyring_name" {
type = string
description = "Name of Fulcio keyring."
Expand Down