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