Skip to content

Commit

Permalink
feat: allow slack and auth0 secrets to be empty/unset
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Kopp authored and BrianKopp committed Dec 1, 2023
1 parent f02bffb commit 1069765
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions modules/bigeye/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -336,31 +336,37 @@ variable "auth0_domain" {
description = "domain for the Auth0 OAuth flow"
type = string
default = ""
default = ""
}

variable "auth0_client_id_secretsmanager_arn" {
description = "secrets manager ARN for the Auth0 client ID"
type = string
default = ""
}

variable "auth0_client_secret_secretsmanager_arn" {
description = "secrets manager ARN for the Auth0 client secret"
type = string
default = ""
}

variable "slack_client_id_secretsmanager_arn" {
description = "secrets manager ARN for the slack client ID"
type = string
default = ""
}

variable "slack_client_secret_secretsmanager_arn" {
description = "secrets manager ARN for the slack client secret"
type = string
default = ""
}

variable "slack_client_signing_secret_secretsmanager_arn" {
description = "secrets manager ARN for the slack client signing secret"
type = string
default = ""
}

variable "stitch_api_token_secretsmanager_arn" {
Expand Down Expand Up @@ -627,7 +633,7 @@ variable "temporal_rds_engine_version" {
variable "temporal_rds_enable_performance_insights" {
description = "Whether to enable performance insights"
type = bool
default = true
default = false
}

variable "temporal_rds_backup_retention_period" {
Expand Down Expand Up @@ -726,7 +732,7 @@ variable "datawatch_rds_engine_version" {
variable "datawatch_rds_enable_performance_insights" {
description = "Whether to enable performance insights"
type = bool
default = true
default = false
}

variable "datawatch_rds_enhanced_monitoring_interval" {
Expand Down

0 comments on commit 1069765

Please sign in to comment.