Skip to content

Commit e4805f2

Browse files
authored
windows_virtual_machine_scale_set/linux_virtual_machine_scale_set - source_image_reference.offer and source_image_reference.publisher are now ForceNew hashicorp#14165)
1 parent 65b6749 commit e4805f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/services/compute/shared_schema.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -351,13 +351,13 @@ func sourceImageReferenceSchema(isVirtualMachine bool) *pluginsdk.Schema {
351351
"publisher": {
352352
Type: pluginsdk.TypeString,
353353
Required: true,
354-
ForceNew: isVirtualMachine,
354+
ForceNew: true,
355355
ValidateFunc: validation.StringIsNotEmpty,
356356
},
357357
"offer": {
358358
Type: pluginsdk.TypeString,
359359
Required: true,
360-
ForceNew: isVirtualMachine,
360+
ForceNew: true,
361361
ValidateFunc: validation.StringIsNotEmpty,
362362
},
363363
"sku": {

0 commit comments

Comments
 (0)