-
Notifications
You must be signed in to change notification settings - Fork 239
Expand file tree
/
Copy pathcomputed.go
More file actions
36 lines (32 loc) · 1.31 KB
/
computed.go
File metadata and controls
36 lines (32 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright IBM Corp. 2019, 2026
// SPDX-License-Identifier: MPL-2.0
package customdiff
import (
"context"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/internal/logging"
)
// ComputedIf returns a CustomizeDiffFunc that sets the given key's new value
// as computed if the given condition function returns true.
//
// This function is best effort and will generate a warning log on any errors.
func ComputedIf(key string, f ResourceConditionFunc) schema.CustomizeDiffFunc {
return func(ctx context.Context, d *schema.ResourceDiff, meta interface{}) error {
if f(ctx, d, meta) {
// To prevent backwards compatibility issues, this logic only
// generates a warning log instead of returning the error to
// the provider and ultimately the practitioner. Providers may
// not be aware of all situations in which the key may not be
// present in the data, such as during resource creation, so any
// further changes here should take that into account by
// documenting how to prevent the error.
if err := d.SetNewComputed(key); err != nil {
logging.HelperSchemaWarn(ctx, "unable to set attribute value to unknown", map[string]interface{}{
logging.KeyAttributePath: key,
logging.KeyError: err,
})
}
}
return nil
}
}