8000 refactor(modules/cluster): add nullable flags · infraspecdev/terraform-aws-ecs@e5166ea · GitHub
[go: up one dir, main page]

Skip to content

Commit e5166ea

Browse files
committed
refactor(modules/cluster): add nullable flags
1 parent c4d1ce9 commit e5166ea

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

modules/cluster/variables.tf

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
variable "name" {
22
description = "Name of the ECS Cluster to create"
33
type = string
4+
nullable = false
45
}
56

67
variable "service_connect_namespace" {
@@ -15,11 +16,13 @@ variable "setting" {
1516
name = string
1617
value = string
1718
}))
18-
default = []
19+
nullable = false
20+
default = []
1921
}
2022

2123
variable "tags" {
2224
description = "Resource Tags for ECS Cluster"
2325
type = map(any)
26+
nullable = false
2427
default = {}
2528
}

0 commit comments

Comments
 (0)
0