Add codestream_domains

This commit is contained in:
Nemo 2022-03-07 18:42:31 +05:30
parent 8ef58c8e68
commit 7efccc3aad
3 changed files with 19 additions and 1 deletions

View File

@ -17,7 +17,7 @@ The following are not included in the module currently, but PRs for the same are
```hcl
module "newrelic-whitelist" {
source = "captn3m0/newrelic-whitelist/data"
version = "2021.09.28"
version = "2022.03.07"
}
resource "aws_security_group_rule" "allow_all_to_newrelic" {
@ -43,6 +43,7 @@ resource "aws_security_group_rule" "allow_all_to_newrelic" {
| 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). |
| codestream\_domains | Wildcard hostnames for Newrelic Codestream |
| infra\_agent\_domains | In order to report data to New Relic, Infrastructure needs outbound access to these domains (For both US and EU accounts) |
| infra\_agent\_domains\_eu | In order to report data to New Relic, Infrastructure needs outbound access to these domains (For EU accounts) |
| infra\_agent\_domains\_us | In order to report data to New Relic, Infrastructure needs outbound access to these domains (For US accounts) |
@ -86,6 +87,10 @@ This module is versioned as per the New Relic "Last Updated" date on [the docs w
If another release has to be made against the same date, they will be suffixed with a `-1`, or `-2` etc.
## 2022.03.07
### Added
- `codestream_domains` output added
## 2021.09.28
### Added

View File

@ -19,6 +19,14 @@ locals {
]
}
codestream_domains = [
"api.codestream.com",
"*.pubnub.com",
"*.pubnub.net",
"*.pndsn.com",
"*.pubnub.io",
]
pixie = {
common = [
"work.withpixie.ai:443",

View File

@ -226,3 +226,8 @@ output "opentelemetry_cidrs_eu" {
description = "CIDRs for all OpenTelemetry integrations (For EU only)"
value = ["${local.opentelemetry["eu_cidr"]}"]
}
output "codestream_domains" {
description = "Wildcard hostnames for Newrelic Codestream"
value = ["${local.codestream_domains}"]
}