Skip to content

Commit

Permalink
ingest
Browse files Browse the repository at this point in the history
  • Loading branch information
ben851 committed Dec 16, 2024
1 parent ea0197f commit 59385cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/common/newrelic.tf
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ resource "newrelic_cloud_aws_link_account" "newrelic_cloud_integration_push" {
resource "newrelic_api_access_key" "newrelic_aws_access_key" {
count = var.enable_new_relic && var.env != "production" ? 1 : 0
account_id = var.new_relic_account_id
key_type = "USER"
key_type = var.env == "staging" ? "USER" : "INGEST"
name = var.env == "staging" ? "notify_tf_provider" : "notify_tf_provider_${var.env}"
notes = "Used by Notify Terraform Code to create New Relic Resources"
}
Expand Down

0 comments on commit 59385cb

Please sign in to comment.