mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-01-02 21:09:36 -05:00
fix: replica to 0 in current schema. Closes #221
This commit is contained in:
parent
e8321d7a0e
commit
fe7f625ad9
1 changed files with 1 additions and 1 deletions
|
|
@ -703,7 +703,7 @@ func resourceDockerService() *schema.Resource {
|
|||
Description: "The amount of replicas of the service",
|
||||
Optional: true,
|
||||
Default: 1,
|
||||
ValidateFunc: validateIntegerGeqThan(1),
|
||||
ValidateFunc: validateIntegerGeqThan(0),
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue