From f30745c8f8697ea809ea3df2eb5853748c57c924 Mon Sep 17 00:00:00 2001 From: Ben Larabie Date: Mon, 15 Jul 2024 10:23:39 -0400 Subject: [PATCH] Marking nr vars as sensitive (#1438) --- aws/newrelic/variables.tf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/aws/newrelic/variables.tf b/aws/newrelic/variables.tf index 78a095130..c0eeaff44 100644 --- a/aws/newrelic/variables.tf +++ b/aws/newrelic/variables.tf @@ -1,12 +1,15 @@ variable "new_relic_account_id" { type = string description = "New Relic Account ID" + sensitive = true } variable "new_relic_api_key" { type = string description = "New Relic API Key" + sensitive = true } variable "new_relic_slack_webhook_url" { type = string description = "Slack Webhook URL" + sensitive = true } \ No newline at end of file