Skip to content

Commit

Permalink
fix: add variable in tf deploy module (#1571)
Browse files Browse the repository at this point in the history
  • Loading branch information
k1g99 authored Mar 18, 2024
1 parent cd4f82d commit 6b4c26e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/infra/deploy/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ module "codedang-infra" {
github_client_secret = var.github_client_secret
kakao_client_id = var.kakao_client_id
kakao_client_secret = var.kakao_client_secret
otel_url = var.otel_url
otel_port = var.otel_port

}

Expand Down
2 changes: 2 additions & 0 deletions apps/infra/deploy/variable.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ variable "github_client_id" {}
variable "github_client_secret" {}
variable "kakao_client_id" {}
variable "kakao_client_secret" {}
variable "otel_url" {}
variable "otel_port" {}
2 changes: 2 additions & 0 deletions apps/infra/local/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ module "codedang-infra" {
github_client_secret = var.github_client_secret
kakao_client_id = var.kakao_client_id
kakao_client_secret = var.kakao_client_secret
otel_url = var.otel_url
otel_port = var.otel_port
}

module "codedang-tf-backend" {
Expand Down
2 changes: 2 additions & 0 deletions apps/infra/local/variable.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ variable "github_client_id" {}
variable "github_client_secret" {}
variable "kakao_client_id" {}
variable "kakao_client_secret" {}
variable "otel_url" {}
variable "otel_port" {}

0 comments on commit 6b4c26e

Please sign in to comment.