Skip to content

Commit

Permalink
fix: service connect description to make variable optional instead of…
Browse files Browse the repository at this point in the history
… required
  • Loading branch information
saumitra-dev committed Aug 8, 2024
1 parent a8de47c commit 4a06bc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 4a06bc8

Please sign in to comment.