Skip to content

Commit

Permalink
fix: ip_service drift + failure (#257)
Browse files Browse the repository at this point in the history
Fixes #254
  • Loading branch information
vaerh committed Sep 18, 2023
1 parent eb9aa35 commit b53b31b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions routeros/resource_ip_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ func ResourceIpService() *schema.Resource {
"certificate": {
Type: schema.TypeString,
Optional: true,
Default: "none",
Description: "The name of the certificate used by a particular service. Applicable only for services " +
"that depend on certificates ( www-ssl, api-ssl ).",
},
Expand Down Expand Up @@ -79,6 +80,7 @@ func ResourceIpService() *schema.Resource {
"tls_version": {
Type: schema.TypeString,
Optional: true,
Default: "any",
Description: "Specifies which TLS versions to allow by a particular service.",
ValidateFunc: validation.StringInSlice([]string{"any", "only-1.2"}, false),
},
Expand Down

0 comments on commit b53b31b

Please sign in to comment.