diff --git a/README.md b/README.md index 4f94173..e717ee1 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,6 @@ Developer NOTE: We should automate this configuration. | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| -| [account\_id](#input\_account\_id) | The account\_id holding these resources (for the s3 bucket.) | `string` | n/a | yes | | [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 | | [namespace](#input\_namespace) | The namespace into which tempo will be deployed | `string` | `"tempo"` | no | | [oidc\_provider\_arn](#input\_oidc\_provider\_arn) | The ARN in the EKS cluster for the OpenID Connect identity provider. | `string` | n/a | yes | diff --git a/main.tf b/main.tf index 22b74f5..7b5e7de 100644 --- a/main.tf +++ b/main.tf @@ -1,7 +1,6 @@ locals { - oidc_arn = var.oidc_provider_arn - tags = var.tags - account_id = var.account_id + oidc_arn = var.oidc_provider_arn + tags = var.tags tempo_internal_hostname = format("tempo.%v.svc.cluster.local", var.namespace) tempo_internal_port_number = 3100 diff --git a/variables.tf b/variables.tf index e824a9d..ce7152f 100644 --- a/variables.tf +++ b/variables.tf @@ -9,11 +9,6 @@ variable "region" { type = string } -variable "account_id" { - description = "The account_id holding these resources (for the s3 bucket.)" - type = string -} - variable "cluster_name" { description = "EKS cluster name name component used through out the EKS cluster describing its purpose (ex: dice-dev)" type = string