Terraform Module that returns the latest New Relic IP and Domains Whitelists: https://docs.newrelic.com/docs/apm/new-relic-apm/getting-started/networks
Go to file
Nemo dc04067779 Initial Commit 2019-04-18 17:02:29 +05:30
LICENSE Initial Commit 2019-04-18 17:02:29 +05:30
README.md Initial Commit 2019-04-18 17:02:29 +05:30
locals.tf Initial Commit 2019-04-18 17:02:29 +05:30
main.tf Initial Commit 2019-04-18 17:02:29 +05:30
outputs.tf Initial Commit 2019-04-18 17:02:29 +05:30
variables.tf Initial Commit 2019-04-18 17:02:29 +05:30

README.md

terraform-data-newrelic-whitelist

This module provides lists of the IP addresses and domains used by New Relic collectors (for example, https://collector.newrelic.com) for communicating with the New Relic agent installed on your server.

This is maintained against https://docs.newrelic.com/docs/apm/new-relic-apm/getting-started/networks

Usage

module "newrelic-whitelist" {
  source  = "captn3m0/newrelic-whitelist/data"
  version = "1.0.0"
}

resource "aws_security_group_rule" "allow_all_to_newrelic" {
  type            = "egress"
  from_port       = 0
  to_port         = 443
  protocol        = "tcp"
  cidr_blocks     = ["${module.newrelic-whitelist.cidr}"]
  security_group_id = "sg-123456"
}

Outputs

Name Description
apm_cidrs List of all New Relic APM CIDRs. Whitelist for egress against 443
apm_cidrs_eu List of New Relic APM CIDRs (EU). Whitelist for egress against 443
apm_cidrs_us List of New Relic APM CIDRs (US). Whitelist for egress against 443
browser_domains List of all New Relic Browser application domains.
browser_domains_eu List of New Relic Browser application domains (EU).
browser_domains_us List of New Relic Browser application domains (US).
infra_cidrs List of all New Relic Infrastructure Agent CIDRs. Whitelist for egress against 443
infra_cidrs_eu List of New Relic Infrastructure Agent CIDRs (EU). Whitelist for egress against 443
infra_cidrs_us List of New Relic Infrastructure Agent CIDRs (US). Whitelist for egress against 443
mobile_domains List of all New Relic Mobile Application domains.
mobile_domains_eu List of New Relic Mobile application domains (EU).
mobile_domains_us List of New Relic Mobile Application domains (US).
ticketing_cidrs
webhook_cidrs

LICENSE

Licensed under MIT. See nemo.mit-license.org for complete text.