Skip to content

Commit 4a06bc8

Browse files
committed
fix: service connect description to make variable optional instead of required
1 parent a8de47c commit 4a06bc8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/cluster/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ variable "name" {
44
}
55

66
variable "service_connect_namespace" {
7-
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."
7+
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."
88
type = string
99
default = null
1010
}

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ variable "cluster_name" {
44
}
55

66
variable "cluster_service_connect_namespace" {
7-
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."
7+
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."
88
type = string
99
default = null
1010
}

0 commit comments

Comments
 (0)