From 1eb40b2b18a963ccc60c9d67a69aff06e7e8d1cb Mon Sep 17 00:00:00 2001 From: Dimitri GRISARD Date: Mon, 1 Jul 2024 17:07:44 +0200 Subject: [PATCH] docs(vpc_options): imrpove description for public access --- README.md | 2 +- variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6c73a9a..12a977e 100644 --- a/README.md +++ b/README.md @@ -224,7 +224,7 @@ No modules. | [software\_update\_options](#input\_software\_update\_options) | Software update options for the domain | `any` |
{
"auto_software_update_enabled": true
}
| no | | [tags](#input\_tags) | A map of tags to add to all resources | `map(string)` | `{}` | no | | [vpc\_endpoints](#input\_vpc\_endpoints) | Map of VPC endpoints to create for the domain | `any` | `{}` | no | -| [vpc\_options](#input\_vpc\_options) | Configuration block for VPC related options. Adding or removing this configuration forces a new resource ([documentation](https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-vpc.html#es-vpc-limitations)) | `any` | `{}` | no | +| [vpc\_options](#input\_vpc\_options) | Configuration block for VPC related options. Adding or removing this configuration forces a new resource ([documentation](https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-vpc.html#es-vpc-limitations)). Leave empty to deploy with public access | `any` | `{}` | no | ## Outputs diff --git a/variables.tf b/variables.tf index 8c87d7b..4345a3b 100644 --- a/variables.tf +++ b/variables.tf @@ -134,7 +134,7 @@ variable "software_update_options" { } variable "vpc_options" { - description = "Configuration block for VPC related options. Adding or removing this configuration forces a new resource ([documentation](https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-vpc.html#es-vpc-limitations))" + description = "Configuration block for VPC related options. Adding or removing this configuration forces a new resource ([documentation](https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-vpc.html#es-vpc-limitations)). Leave empty to deploy with public access" type = any default = {} }