Skip to content

Commit

Permalink
fix(infra): set github token for oauth as sensitive in tfvars (#1132)
Browse files Browse the repository at this point in the history
fix: set github token for oauth as sensitive in tfvars
  • Loading branch information
k1g99 authored Jan 3, 2024
1 parent d0e7f8c commit b964129
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions infra/modules/codedang-infra/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,13 @@ variable "rabbitmq_submission_routing_key" {
}

variable "github_client_id" {
type = string
default = "github_client_id"
type = string
default = "github_client_id"
sensitive = true
}

variable "github_client_secret" {
type = string
default = "github_client_secret"
type = string
default = "github_client_secret"
sensitive = true
}

0 comments on commit b964129

Please sign in to comment.