You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,7 @@ No resources.
49
49
| <aname="input_asg_tags"></a> [asg\_tags](#input\_asg\_tags)| Resources Tags for Autoscaling group |`map(string)`|`{}`| no |
50
50
| <aname="input_asg_vpc_zone_identifier"></a> [asg\_vpc\_zone\_identifier](#input\_asg\_vpc\_zone\_identifier)| (Optional) List of subnet IDs to launch resources in. |`list(string)`| n/a | yes |
51
51
| <aname="input_cluster_name"></a> [cluster\_name](#input\_cluster\_name)| (Required) Name of the cluster |`string`| n/a | yes |
52
+
| <aname="input_cluster_service_connect_namespace"></a> [cluster\_service\_connect\_namespace](#input\_cluster\_service\_connect\_namespace)| (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. |`string`|`null`| no |
52
53
| <aname="input_cluster_setting"></a> [cluster\_setting](#input\_cluster\_setting)| (Optional) Configuration block(s) with cluster settings. | <pre>list(object({<br> name = string<br> value = string<br> }))</pre> |`[]`| no |
53
54
| <aname="input_cluster_tags"></a> [cluster\_tags](#input\_cluster\_tags)| (Optional) Key-value map of resource tags. |`map(string)`|`{}`| no |
| <aname="input_name"></a> [name](#input\_name)| Name of the ECS Cluster to create |`string`| n/a | yes |
32
+
| <aname="input_service_connect_namespace"></a> [service\_connect\_namespace](#input\_service\_connect\_namespace)| (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. |`string`|`null`| no |
32
33
| <aname="input_setting"></a> [setting](#input\_setting)| Details of the setting configuration | <pre>list(object({<br> name = string<br> value = string<br> }))</pre> |`[]`| no |
33
34
| <aname="input_tags"></a> [tags](#input\_tags)| Resource Tags for ECS Cluster |`map(any)`|`{}`| no |
Copy file name to clipboardExpand all lines: modules/cluster/variables.tf
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,12 @@ variable "name" {
3
3
type=string
4
4
}
5
5
6
+
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."
8
+
type=string
9
+
default=null
10
+
}
11
+
6
12
variable"setting" {
7
13
description="Details of the setting configuration"
Copy file name to clipboardExpand all lines: variables.tf
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,12 @@ variable "cluster_name" {
3
3
type=string
4
4
}
5
5
6
+
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."
8
+
type=string
9
+
default=null
10
+
}
11
+
6
12
variable"cluster_setting" {
7
13
description="(Optional) Configuration block(s) with cluster settings."
0 commit comments