Skip to content

Commit 99e4be3

Browse files
committed
Description
1 parent a431a13 commit 99e4be3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

testing/infra/terraform/modules/ec_deployment/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ used to configure the module, please refer to the [EC Provider docs](https://reg
5656
| <a name="input_docker_image"></a> [docker\_image](#input\_docker\_image) | Optional docker image overrides. The full map needs to be specified | `map(string)` | <pre>{<br/> "apm": "docker.elastic.co/cloud-release/elastic-agent-cloud",<br/> "elasticsearch": "docker.elastic.co/cloud-release/elasticsearch-cloud-ess",<br/> "kibana": "docker.elastic.co/cloud-release/kibana-cloud"<br/>}</pre> | no |
5757
| <a name="input_docker_image_tag_override"></a> [docker\_image\_tag\_override](#input\_docker\_image\_tag\_override) | Optional docker image tag overrides, The full map needs to be specified | `map(string)` | <pre>{<br/> "apm": "",<br/> "elasticsearch": "",<br/> "kibana": ""<br/>}</pre> | no |
5858
| <a name="input_drop_pipeline"></a> [drop\_pipeline](#input\_drop\_pipeline) | Whether or not to install an Elasticsearch ingest pipeline to drop all incoming APM documents. Defaults to false | `bool` | `false` | no |
59-
| <a name="input_ec_target"></a> [ec\_target](#input\_ec\_target) | Elastic Cloud control plane to target for admin console URLs (`qa` uses the QA control plane, `pro` uses production) | `string` | `"pro"` | no |
59+
| <a name="input_ec_target"></a> [ec\_target](#input\_ec\_target) | Elastic Cloud environment selector (`qa` for QA Elastic Cloud, `pro` for production Elastic Cloud) | `string` | `"pro"` | no |
6060
| <a name="input_elasticsearch_autoscale"></a> [elasticsearch\_autoscale](#input\_elasticsearch\_autoscale) | Optional autoscale the Elasticsearch cluster | `bool` | `false` | no |
6161
| <a name="input_elasticsearch_dedicated_masters"></a> [elasticsearch\_dedicated\_masters](#input\_elasticsearch\_dedicated\_masters) | Optionally use dedicated masters for the Elasticsearch cluster | `bool` | `false` | no |
6262
| <a name="input_elasticsearch_size"></a> [elasticsearch\_size](#input\_elasticsearch\_size) | Optional Elasticsearch instance size | `string` | `"8g"` | no |

testing/infra/terraform/modules/ec_deployment/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ variable "deployment_template" {
2020

2121
variable "ec_target" {
2222
default = "pro"
23-
description = "Elastic Cloud control plane to target for admin console URLs (`qa` uses the QA control plane, `pro` uses production)"
23+
description = "Elastic Cloud environment selector (`qa` for QA Elastic Cloud, `pro` for production Elastic Cloud)"
2424
type = string
2525
validation {
2626
condition = contains(["qa", "pro"], lower(var.ec_target))

0 commit comments

Comments
 (0)