From fe0aeb0f16ec6337fed71f4b46d3928c2116361d Mon Sep 17 00:00:00 2001 From: "Matthew C. Morgan" Date: Thu, 17 Apr 2025 17:46:42 -0400 Subject: [PATCH] add eecr_account_id --- README.md | 1 + variables.tf | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/README.md b/README.md index c886b85..e0caedb 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,7 @@ This modules installs the OpenTelemetry Collector operator and two Collectors. O |------|-------------|------|---------|:--------:| | [account\_id](#input\_account\_id) | aws account number | `string` | `""` | no | | [cluster\_name](#input\_cluster\_name) | EKS cluster name name component used through out the EKS cluster describing its purpose (ex: dice-dev) | `string` | n/a | yes | +| [eecr\_account\_id](#input\_eecr\_account\_id) | enterpirse ecr source aws account number | `string` | `""` | no | | [loki\_endpoint](#input\_loki\_endpoint) | The internal endpoint for the loki service | `string` | n/a | yes | | [namespace](#input\_namespace) | Namespace in which to install open telemetry | `string` | `"telemetry"` | no | | [otel\_helm\_repo](#input\_otel\_helm\_repo) | Helm repo for official opentelemetry | `string` | `"https://open-telemetry.github.io/opentelemetry-helm-charts"` | no | diff --git a/variables.tf b/variables.tf index 94b63e4..d945735 100644 --- a/variables.tf +++ b/variables.tf @@ -9,6 +9,12 @@ variable "cluster_name" { type = string } +variable "eecr_account_id" { + description = "enterpirse ecr source aws account number" + type = string + default = "" +} + variable "loki_endpoint" { description = "The internal endpoint for the loki service" type = string