From 677abad0da77f4bff4c02f048bb6cd517c44e543 Mon Sep 17 00:00:00 2001 From: "Matthew C. Morgan" Date: Thu, 17 Oct 2024 11:36:40 -0400 Subject: [PATCH] remove defaults --- README.md | 2 +- variables.tf | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index 6b618d9..a2071aa 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ No modules. | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| | [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 | -| [istio\_ingress\_lb](#input\_istio\_ingress\_lb) | The istio ingress load balancer DNS. | `map(string)` |
{
"dns_name": "abc-123.elb.region.amazonaws.com",
"zone_id": "ZABC123455"
}
| no | +| [istio\_ingress\_lb](#input\_istio\_ingress\_lb) | The istio ingress load balancer DNS. | `map(string)` | n/a | yes | | [os\_username](#input\_os\_username) | OS username from environment variable, ideally as $USER | `string` | `null` | no | | [region](#input\_region) | AWS config region | `string` | `""` | no | | [region\_map](#input\_region\_map) | AWS region map | `map(string)` |
{
"east": "us-gov-east-1",
"west": "us-gov-west-1"
}
| no | diff --git a/variables.tf b/variables.tf index a17a541..687eb25 100644 --- a/variables.tf +++ b/variables.tf @@ -50,10 +50,6 @@ variable "os_username" { variable "istio_ingress_lb" { description = "The istio ingress load balancer DNS." type = map(string) - default = { - dns_name = "abc-123.elb.region.amazonaws.com" - zone_id = "ZABC123455" - } } variable "region_map" {