Skip to content

Commit 1b6fa6f

Browse files
committed
add attach_on_boot to the resource_volume_attachement schema
1 parent 18ba0a3 commit 1b6fa6f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Diff for: civo/volume/resource_volume_attachment.go

+7
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@ func ResourceVolumeAttachment() *schema.Resource {
3939
ForceNew: true,
4040
Description: "The region for the volume attachment",
4141
},
42+
"attach_at_boot": {
43+
Type: schema.TypeBool,
44+
Optional: true,
45+
Default: false,
46+
ForceNew: true,
47+
Description: "Whether to attach the instance to the volume at boot",
48+
},
4249
},
4350
CreateContext: resourceVolumeAttachmentCreate,
4451
ReadContext: resourceVolumeAttachmentRead,

0 commit comments

Comments
 (0)