From 4a06bc88497955df1576121e9996ac35dd8557fd Mon Sep 17 00:00:00 2001 From: saumitra-dev Date: Fri, 9 Aug 2024 00:07:50 +0530 Subject: [PATCH] fix: service connect description to make variable optional instead of required --- modules/cluster/variables.tf | 2 +- variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/cluster/variables.tf b/modules/cluster/variables.tf index dbed5cc..9f88dbe 100644 --- a/modules/cluster/variables.tf +++ b/modules/cluster/variables.tf @@ -4,7 +4,7 @@ variable "name" { } variable "service_connect_namespace" { - description = "(Required) ARN of the aws_service_discovery_http_namespace that's used when you create a service and don't specify a Service Connect configuration." + description = "(Optional) ARN of the aws_service_discovery_http_namespace that's used when you create a service and don't specify a Service Connect configuration." type = string default = null } diff --git a/variables.tf b/variables.tf index 0a6779f..968a20a 100644 --- a/variables.tf +++ b/variables.tf @@ -4,7 +4,7 @@ variable "cluster_name" { } variable "cluster_service_connect_namespace" { - description = "(Required) ARN of the aws_service_discovery_http_namespace that's used when you create a service and don't specify a Service Connect configuration." + description = "(Optional) ARN of the aws_service_discovery_http_namespace that's used when you create a service and don't specify a Service Connect configuration." type = string default = null }