From 239f97471ccc55fcd070db1a145bb1bd701186ae Mon Sep 17 00:00:00 2001 From: Adrien Delorme Date: Tue, 27 Aug 2019 09:21:29 +0200 Subject: [PATCH] fix ebs volume tags doc field Co-Authored-By: Megan Marsh --- builder/amazon/ebsvolume/block_device.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/builder/amazon/ebsvolume/block_device.go b/builder/amazon/ebsvolume/block_device.go index 136252ac4..37c0dd28d 100644 --- a/builder/amazon/ebsvolume/block_device.go +++ b/builder/amazon/ebsvolume/block_device.go @@ -10,9 +10,9 @@ import ( type BlockDevice struct { awscommon.BlockDevice `mapstructure:",squash"` - // Tags applied to the AMI. This is a - // template engine, see Build template - // data for more information. + // Tags to apply to the volume. These are retained after the builder + // completes. This is a [template engine](/docs/templates/engine.html), see + // [Build template data](#build-template-data) for more information. Tags awscommon.TagMap `mapstructure:"tags" required:"false"` }