volumes
Creates, updates, deletes or gets a volume resource or lists volumes in a region
Overview
| Name | volumes |
| Type | Resource |
| Description | Specifies an Amazon Elastic Block Store (Amazon EBS) volume.When you use CFNlong to update an Amazon EBS volume that modifiesIops, Size, or VolumeType, there is a cooldown period before another operation can occur. This can cause your stack to report being in UPDATE_IN_PROGRESS or UPDATE_ROLLBACK_IN_PROGRESS for long periods of time.Amazon EBS does not support sizing down an Amazon EBS volume. CFNlong does not attempt to modify an Amazon EBS volume to a smaller size on rollback. Some common scenarios when you might encounter a cooldown period for Amazon EBS include: + You successfully update an Amazon EBS volume and the update succeeds. When you attempt another update within the cooldown window, that update will be subject to a cooldown period. + You successfully update an Amazon EBS volume and the update succeeds but another change in your update-stack call fails. The rollback will be subject to a cooldown period.For more information, see Requirements for EBS volume modifications. DeletionPolicy attribute To control how CFNlong handles the volume when the stack is deleted, set a deletion policy for your volume. You can choose to retain the volume, to delete the volume, or to create a snapshot of the volume. For more information, see DeletionPolicy attribute. If you set a deletion policy that creates a snapshot, all tags on the volume are included in the snapshot. |
| Id | awscc.ec2.volumes |
Fields
- get (all properties)
- list (identifiers only)
| Name | Datatype | Description |
|---|---|---|
multi_attach_enabled | boolean | Indicates whether Amazon EBS Multi-Attach is enabled.CFNlong does not currently support updating a single-attach volume to be multi-attach enabled, updating a multi-attach enabled volume to be single-attach, or updating the size or number of I/O operations per second (IOPS) of a multi-attach enabled volume. |
kms_key_id | string | The identifier of the kms-key-long to use for Amazon EBS encryption. If If you omit this property and your account is enabled for encryption by default, or Encrypted is set to |
encrypted | boolean | Indicates whether the volume should be encrypted. The effect of setting the encryption state to Encrypted Amazon EBS volumes must be attached to instances that support Amazon EBS encryption. For more information, see Supported instance types. |
size | integer | The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.The following are the supported volumes sizes for each volume type:+ gp2 and gp3: 1 - 16,384 GiB+ io1: 4 - 16,384 GiB+ io2: 4 - 65,536 GiB+ st1 and sc1: 125 - 16,384 GiB+ standard: 1 - 1024 GiB |
auto_enable_io | boolean | Indicates whether the volume is auto-enabled for I/O operations. By default, Amazon EBS disables I/O to the volume from attached EC2 instances when it determines that a volume's data is potentially inconsistent. If the consistency of the volume is not a concern, and you prefer that the volume be made available immediately if it's impaired, you can configure the volume to automatically enable I/O. |
outpost_arn | string | The Amazon Resource Name (ARN) of the Outpost. |
availability_zone | string | The ID of the Availability Zone in which to create the volume. For example, Either |
throughput | integer | The throughput to provision for a volume, with a maximum of 1,000 MiB/s.This parameter is valid only forgp3 volumes. The default value is 125.Valid Range: Minimum value of 125. Maximum value of 1000. |
iops | integer | The number of I/O operations per second (IOPS). For The following are the supported values for each volume type: |
volume_initialization_rate | integer | Specifies the Amazon EBS Provisioned Rate for Volume Initialization (volume initialization rate), in MiB/s, at which to download the snapshot blocks from Amazon S3 to the volume. This is also known as volume initialization. Specifying a volume initialization rate ensures that the volume is initialized at a predictable and consistent rate after creation.This parameter is supported only for volumes created from snapshots. Omit this parameter if:+ You want to create the volume using fast snapshot restore. You must specify a snapshot that is enabled for fast snapshot restore. In this case, the volume is fully initialized at creation. If you specify a snapshot that is enabled for fast snapshot restore and a volume initialization rate, the volume will be initialized at the specified rate instead of fast snapshot restore. + You want to create a volume that is initialized at the default rate. For more information, see Initialize Amazon EBS volumes in the Amazon EC2 User Guide. Valid range: 100 - 300 MiB/s |
snapshot_id | string | The snapshot from which to create the volume. You must specify either a snapshot ID or a volume size. |
volume_id | string | |
volume_type | string | The volume type. This parameter can be one of the following values:+ General Purpose SSD:gp2 | gp3+ Provisioned IOPS SSD: io1 | io2+ Throughput Optimized HDD: st1+ Cold HDD: sc1+ Magnetic: standardFor more information, see Amazon EBS volume types. Default: gp2 |
tags | array | The tags to apply to the volume during creation. |
region | string | AWS region. |
| Name | Datatype | Description |
|---|---|---|
volume_id | string | |
region | string | AWS region. |
For more information, see AWS::EC2::Volume.
Methods
| Name | Resource | Accessible by | Required Params |
|---|---|---|---|
create_resource | volumes | INSERT | AvailabilityZone, region |
delete_resource | volumes | DELETE | Identifier, region |
update_resource | volumes | UPDATE | Identifier, PatchDocument, region |
list_resources | volumes_list_only | SELECT | region |
get_resource | volumes | SELECT | Identifier, region |
SELECT examples
- get (all properties)
- list (identifiers only)
Gets all properties from an individual volume.
SELECT
region,
multi_attach_enabled,
kms_key_id,
encrypted,
size,
auto_enable_io,
outpost_arn,
availability_zone,
throughput,
iops,
volume_initialization_rate,
snapshot_id,
volume_id,
volume_type,
tags
FROM awscc.ec2.volumes
WHERE
region = '{{ region }}' AND
Identifier = '{{ volume_id }}';
Lists all volumes in a region.
SELECT
region,
volume_id
FROM awscc.ec2.volumes_list_only
WHERE
region = '{{ region }}';
INSERT example
Use the following StackQL query and manifest file to create a new volume resource, using stack-deploy.
- Required Properties
- All Properties
- Manifest
/*+ create */
INSERT INTO awscc.ec2.volumes (
AvailabilityZone,
region
)
SELECT
'{{ availability_zone }}',
'{{ region }}'
RETURNING
ErrorCode,
EventTime,
Identifier,
Operation,
OperationStatus,
RequestToken,
ResourceModel,
RetryAfter,
StatusMessage,
TypeName
;
/*+ create */
INSERT INTO awscc.ec2.volumes (
MultiAttachEnabled,
KmsKeyId,
Encrypted,
Size,
AutoEnableIO,
OutpostArn,
AvailabilityZone,
Throughput,
Iops,
VolumeInitializationRate,
SnapshotId,
VolumeType,
Tags,
region
)
SELECT
'{{ multi_attach_enabled }}',
'{{ kms_key_id }}',
'{{ encrypted }}',
'{{ size }}',
'{{ auto_enable_io }}',
'{{ outpost_arn }}',
'{{ availability_zone }}',
'{{ throughput }}',
'{{ iops }}',
'{{ volume_initialization_rate }}',
'{{ snapshot_id }}',
'{{ volume_type }}',
'{{ tags }}',
'{{ region }}'
RETURNING
ErrorCode,
EventTime,
Identifier,
Operation,
OperationStatus,
RequestToken,
ResourceModel,
RetryAfter,
StatusMessage,
TypeName
;
version: 1
name: stack name
description: stack description
providers:
- aws
globals:
- name: region
value: '{{ vars.AWS_REGION }}'
resources:
- name: volume
props:
- name: multi_attach_enabled
value: '{{ multi_attach_enabled }}'
- name: kms_key_id
value: '{{ kms_key_id }}'
- name: encrypted
value: '{{ encrypted }}'
- name: size
value: '{{ size }}'
- name: auto_enable_io
value: '{{ auto_enable_io }}'
- name: outpost_arn
value: '{{ outpost_arn }}'
- name: availability_zone
value: '{{ availability_zone }}'
- name: throughput
value: '{{ throughput }}'
- name: iops
value: '{{ iops }}'
- name: volume_initialization_rate
value: '{{ volume_initialization_rate }}'
- name: snapshot_id
value: '{{ snapshot_id }}'
- name: volume_type
value: '{{ volume_type }}'
- name: tags
value:
- key: '{{ key }}'
value: '{{ value }}'
UPDATE example
Use the following StackQL query and manifest file to update a volume resource, using stack-deploy.
/*+ update */
UPDATE awscc.ec2.volumes
SET PatchDocument = string('{{ {
"MultiAttachEnabled": multi_attach_enabled,
"KmsKeyId": kms_key_id,
"Encrypted": encrypted,
"Size": size,
"AutoEnableIO": auto_enable_io,
"OutpostArn": outpost_arn,
"AvailabilityZone": availability_zone,
"Throughput": throughput,
"Iops": iops,
"VolumeInitializationRate": volume_initialization_rate,
"SnapshotId": snapshot_id,
"VolumeType": volume_type,
"Tags": tags
} | generate_patch_document }}')
WHERE
region = '{{ region }}' AND
Identifier = '{{ volume_id }}'
RETURNING
ErrorCode,
EventTime,
Identifier,
Operation,
OperationStatus,
RequestToken,
ResourceModel,
RetryAfter,
StatusMessage,
TypeName
;
DELETE example
/*+ delete */
DELETE FROM awscc.ec2.volumes
WHERE
Identifier = '{{ volume_id }}' AND
region = '{{ region }}'
RETURNING
ErrorCode,
EventTime,
Identifier,
Operation,
OperationStatus,
RequestToken,
ResourceModel,
RetryAfter,
StatusMessage,
TypeName
;
Additional Parameters
Mutable resources in the Cloud Control provider support additional optional parameters which can be supplied with INSERT, UPDATE, or DELETE operations. These include:
| Parameter | Description |
|---|---|
ClientToken | A unique identifier to ensure the idempotency of the resource request.This allows the provider to accurately distinguish between retries and new requests.A client token is valid for 36 hours once used. After that, a resource request with the same client token is treated as a new request. If you do not specify a client token, one is generated for inclusion in the request. |
RoleArn | The ARN of the IAM role used to perform this resource operation.The role specified must have the permissions required for this operation.If you do not specify a role, a temporary session is created using your AWS user credentials. |
TypeVersionId | For private resource types, the type version to use in this resource operation.If you do not specify a resource version, the default version is used. |
Permissions
To operate on the volumes resource, the following permissions are required:
- Read
- Create
- Update
- List
- Delete
ec2:DescribeVolumes,
ec2:DescribeVolumeAttribute,
ec2:DescribeTags
ec2:CreateVolume,
ec2:DescribeVolumes,
ec2:DescribeVolumeAttribute,
ec2:ModifyVolumeAttribute,
ec2:CreateTags,
kms:GenerateDataKeyWithoutPlaintext,
kms:CreateGrant
ec2:ModifyVolume,
ec2:ModifyVolumeAttribute,
ec2:DescribeVolumeAttribute,
ec2:DescribeVolumesModifications,
ec2:DescribeVolumes,
ec2:CreateTags,
ec2:DeleteTags
ec2:DescribeVolumes,
ec2:DescribeTags,
ec2:DescribeVolumeAttribute
ec2:DeleteVolume,
ec2:CreateSnapshot,
ec2:DescribeSnapshots,
ec2:DeleteTags,
ec2:DescribeVolumes