Skip to content

Commit

Permalink
add to sigstore module too
Browse files Browse the repository at this point in the history
Signed-off-by: Bob Callaway <[email protected]>
  • Loading branch information
bobcallaway committed May 22, 2024
1 parent 099b2b7 commit 6830189
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions terraform/gcp/modules/sigstore/sigstore.tf
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ module "mysql" {
database_version = var.mysql_db_version
tier = var.mysql_tier
availability_type = var.mysql_availability_type
collation = var.mysql_collation

replica_zones = var.mysql_replica_zones
replica_tier = var.mysql_replica_tier
Expand Down Expand Up @@ -373,6 +374,7 @@ module "ctlog_shards" {
require_ssl = var.mysql_require_ssl
backup_enabled = var.mysql_backup_enabled
binary_log_backup_enabled = var.mysql_binary_log_backup_enabled
collation = var.mysql_collation


depends_on = [
Expand Down Expand Up @@ -423,6 +425,7 @@ module "standalone_mysqls" {
require_ssl = var.mysql_require_ssl
backup_enabled = var.mysql_backup_enabled
binary_log_backup_enabled = var.mysql_binary_log_backup_enabled
collation = var.mysql_collation


depends_on = [
Expand Down
6 changes: 6 additions & 0 deletions terraform/gcp/modules/sigstore/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,12 @@ variable "mysql_binary_log_backup_enabled" {
default = true
}

variable "mysql_collation" {
type = string
description = "collation setting for database"
default = "utf8_general_ci"
}

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

0 comments on commit 6830189

Please sign in to comment.