Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 0C2A1200D42 for ; Fri, 17 Nov 2017 12:40:42 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 0ABD6160C0A; Fri, 17 Nov 2017 11:40:42 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 50596160BF8 for ; Fri, 17 Nov 2017 12:40:41 +0100 (CET) Received: (qmail 77323 invoked by uid 500); 17 Nov 2017 11:40:40 -0000 Mailing-List: contact commits-help@brooklyn.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@brooklyn.apache.org Delivered-To: mailing list commits@brooklyn.apache.org Received: (qmail 77314 invoked by uid 99); 17 Nov 2017 11:40:40 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Nov 2017 11:40:40 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6AC9ADFC27; Fri, 17 Nov 2017 11:40:40 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: tbouron@apache.org To: commits@brooklyn.apache.org Date: Fri, 17 Nov 2017 11:40:40 -0000 Message-Id: <2293b4f0f6c64b6b92d50654f65b6e30@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] brooklyn-docs git commit: Specify EBS Boot volume size archived-at: Fri, 17 Nov 2017 11:40:42 -0000 Repository: brooklyn-docs Updated Branches: refs/heads/master d00c98a79 -> 2c20b30f2 Specify EBS Boot volume size Project: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/repo Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/commit/23007cc9 Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/tree/23007cc9 Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/diff/23007cc9 Branch: refs/heads/master Commit: 23007cc9e4dfa8532aeee7ff923d74f0d476aa09 Parents: 6c4d98e Author: Duncan Godwin Authored: Fri Nov 17 11:13:49 2017 +0000 Committer: Duncan Godwin Committed: Fri Nov 17 11:34:57 2017 +0000 ---------------------------------------------------------------------- guide/locations/_AWS.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/23007cc9/guide/locations/_AWS.md ---------------------------------------------------------------------- diff --git a/guide/locations/_AWS.md b/guide/locations/_AWS.md index 16cb88d..b561d6a 100644 --- a/guide/locations/_AWS.md +++ b/guide/locations/_AWS.md @@ -42,6 +42,22 @@ Below are examples of configuration options that use values specific to AWS EC2: [security groups](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html). For example, `securityGroups: mygroup1` or `securityGroups: [ mygroup1, mygroup2 ]`. +### EBS boot volume size + +The size of the EBS boot volume for a VM can be specified using `mapNewVolumeToDeviceName` in `templateOptions` as shown below: + + location: + jclouds:aws-ec2: + region: ... + templateOptions: + mapNewVolumeToDeviceName: + - /dev/sda1 + - 123 + - true + +Where `/dev/sda1` is the device name of the boot volume on the selected AMI, `123` is the size of the volume in gigabytes +and `true` is a boolean indicating the volume should be deleted on VM termination. + ### Using Subnets and Security Groups