Skip to content

Commit

Permalink
fix sync check wrong variable naming
Browse files Browse the repository at this point in the history
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
  • Loading branch information
samuelarogbonlo committed Jan 29, 2024
1 parent 60ac928 commit 0b0ebeb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tf-managed/modules/sync-check/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ locals {
FOREST_TARGET_RUBY_COMMON = "/volumes/ruby_common",
slack_token = var.slack_token,
slack_channel = var.slack_channel,
NEW_RELIC_API_KEY = var.NEW_RELIC_API_KEY,
NEW_RELIC_ACCOUNT_ID = var.NEW_RELIC_ACCOUNT_ID,
NEW_RELIC_API_KEY = var.new_relic_api_key,
NEW_RELIC_ACCOUNT_ID = var.new_relic_account_id,
NEW_RELIC_REGION = var.NEW_RELIC_REGION,
forest_tag = "edge-fat"
})
Expand Down
4 changes: 2 additions & 2 deletions tf-managed/modules/sync-check/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ variable "NEW_RELIC_REGION" {
default = "EU"
}

variable "NEW_RELIC_API_KEY" {
variable "new_relic_api_key" {
description = "New Relic API KEY"
default = ""
type = string
sensitive = true
}

variable "NEW_RELIC_ACCOUNT_ID" {
variable "new_relic_account_id" {
description = "The New Relic Account ID"
default = ""
type = string
Expand Down

0 comments on commit 0b0ebeb

Please sign in to comment.