orange-orange-5698
11/25/2025, 9:41 AMsteep-plastic-74107
11/25/2025, 7:08 PMsteep-plastic-74107
11/25/2025, 7:10 PMorange-orange-5698
11/25/2025, 11:45 PMshouldImageRebuildOnChange: bool = true in secrets to allow users to mark shouldImageRebuildOnChange field as false when needed.
However, secrets type is currently map[string]string which means the change won't be backward-compatible if I change it to:
map[string]Secret
type Secret struct {
// Value is the direct secret value
Value string `pulumi:"value,optional"`
// If false, the docker is not rebuilt if the value of secret changes. This is useful in cases where secret is a short-lived token which changes on every run but the image shouldn't be rebuilt
ShouldImageRebuildOnChange bool `pulumi:"shouldImageRebuildOnChange,optional"`
}steep-plastic-74107
11/25/2025, 11:52 PMorange-orange-5698
11/26/2025, 11:31 PMsteep-plastic-74107
11/27/2025, 1:42 PMorange-orange-5698
12/01/2025, 6:47 AMsteep-plastic-74107
12/01/2025, 3:11 PMfull-analyst-99298
12/01/2025, 11:22 PMorange-orange-5698
12/02/2025, 11:37 AMfull-analyst-99298
12/02/2025, 11:49 AM