Skip to content

Commit afb0ba5

Browse files
authored
Make comment parameter optional (#1103)
1 parent 9668d3a commit afb0ba5

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

mongodbatlas/resource_mongodbatlas_project_ip_access_list.go

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,10 @@ func resourceMongoDBAtlasProjectIPAccessList() *schema.Resource {
8181
ConflictsWith: []string{"ip_address", "cidr_block"},
8282
},
8383
"comment": {
84-
Type: schema.TypeString,
85-
Optional: true,
86-
Computed: true,
87-
ForceNew: true,
88-
ValidateFunc: validation.NoZeroValues,
84+
Type: schema.TypeString,
85+
Optional: true,
86+
Computed: true,
87+
ForceNew: true,
8988
},
9089
},
9190
Timeouts: &schema.ResourceTimeout{

0 commit comments

Comments
 (0)