We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0d4529 commit 5159471Copy full SHA for 5159471
internal/services/instance/server.go
@@ -279,12 +279,8 @@ func ResourceServer() *schema.Resource {
279
Elem: &schema.Schema{
280
Type: schema.TypeString,
281
},
282
- DiffSuppressFunc: func(k, old, new string, d *schema.ResourceData) bool {
283
- if k == "user_data.ssh-host-fingerprints" {
284
- return true
285
- }
286
-
287
- return false
+ DiffSuppressFunc: func(k, _, _ string, _ *schema.ResourceData) bool {
+ return k == "user_data.ssh-host-fingerprints"
288
289
290
"private_network": {
0 commit comments