aws.ebs.Volume
Explore with Pulumi AI
Manages a single EBS volume.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.ebs.Volume("example", {
availabilityZone: "us-west-2a",
size: 40,
tags: {
Name: "HelloWorld",
},
});
import pulumi
import pulumi_aws as aws
example = aws.ebs.Volume("example",
availability_zone="us-west-2a",
size=40,
tags={
"Name": "HelloWorld",
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ebs"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ebs.NewVolume(ctx, "example", &ebs.VolumeArgs{
AvailabilityZone: pulumi.String("us-west-2a"),
Size: pulumi.Int(40),
Tags: pulumi.StringMap{
"Name": pulumi.String("HelloWorld"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Ebs.Volume("example", new()
{
AvailabilityZone = "us-west-2a",
Size = 40,
Tags =
{
{ "Name", "HelloWorld" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ebs.Volume;
import com.pulumi.aws.ebs.VolumeArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new Volume("example", VolumeArgs.builder()
.availabilityZone("us-west-2a")
.size(40)
.tags(Map.of("Name", "HelloWorld"))
.build());
}
}
resources:
example:
type: aws:ebs:Volume
properties:
availabilityZone: us-west-2a
size: 40
tags:
Name: HelloWorld
Create Volume Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Volume(name: string, args: VolumeArgs, opts?: CustomResourceOptions);
@overload
def Volume(resource_name: str,
args: VolumeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Volume(resource_name: str,
opts: Optional[ResourceOptions] = None,
availability_zone: Optional[str] = None,
encrypted: Optional[bool] = None,
final_snapshot: Optional[bool] = None,
iops: Optional[int] = None,
kms_key_id: Optional[str] = None,
multi_attach_enabled: Optional[bool] = None,
outpost_arn: Optional[str] = None,
size: Optional[int] = None,
snapshot_id: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
throughput: Optional[int] = None,
type: Optional[str] = None)
func NewVolume(ctx *Context, name string, args VolumeArgs, opts ...ResourceOption) (*Volume, error)
public Volume(string name, VolumeArgs args, CustomResourceOptions? opts = null)
public Volume(String name, VolumeArgs args)
public Volume(String name, VolumeArgs args, CustomResourceOptions options)
type: aws:ebs:Volume
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var volumeResource = new Aws.Ebs.Volume("volumeResource", new()
{
AvailabilityZone = "string",
Encrypted = false,
FinalSnapshot = false,
Iops = 0,
KmsKeyId = "string",
MultiAttachEnabled = false,
OutpostArn = "string",
Size = 0,
SnapshotId = "string",
Tags =
{
{ "string", "string" },
},
Throughput = 0,
Type = "string",
});
example, err := ebs.NewVolume(ctx, "volumeResource", &ebs.VolumeArgs{
AvailabilityZone: pulumi.String("string"),
Encrypted: pulumi.Bool(false),
FinalSnapshot: pulumi.Bool(false),
Iops: pulumi.Int(0),
KmsKeyId: pulumi.String("string"),
MultiAttachEnabled: pulumi.Bool(false),
OutpostArn: pulumi.String("string"),
Size: pulumi.Int(0),
SnapshotId: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Throughput: pulumi.Int(0),
Type: pulumi.String("string"),
})
var volumeResource = new Volume("volumeResource", VolumeArgs.builder()
.availabilityZone("string")
.encrypted(false)
.finalSnapshot(false)
.iops(0)
.kmsKeyId("string")
.multiAttachEnabled(false)
.outpostArn("string")
.size(0)
.snapshotId("string")
.tags(Map.of("string", "string"))
.throughput(0)
.type("string")
.build());
volume_resource = aws.ebs.Volume("volumeResource",
availability_zone="string",
encrypted=False,
final_snapshot=False,
iops=0,
kms_key_id="string",
multi_attach_enabled=False,
outpost_arn="string",
size=0,
snapshot_id="string",
tags={
"string": "string",
},
throughput=0,
type="string")
const volumeResource = new aws.ebs.Volume("volumeResource", {
availabilityZone: "string",
encrypted: false,
finalSnapshot: false,
iops: 0,
kmsKeyId: "string",
multiAttachEnabled: false,
outpostArn: "string",
size: 0,
snapshotId: "string",
tags: {
string: "string",
},
throughput: 0,
type: "string",
});
type: aws:ebs:Volume
properties:
availabilityZone: string
encrypted: false
finalSnapshot: false
iops: 0
kmsKeyId: string
multiAttachEnabled: false
outpostArn: string
size: 0
snapshotId: string
tags:
string: string
throughput: 0
type: string
Volume Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Volume resource accepts the following input properties:
- Availability
Zone string - Availability zone where the EBS volume will exist.
- Encrypted bool
- If true, the disk will be encrypted.
- Final
Snapshot bool - If true, snapshot will be created before volume deletion. Any tags on the volume will be migrated to the snapshot. By default set to false
- Iops int
- Amount of IOPS to provision for the disk. Only valid for
type
ofio1
,io2
orgp3
. - Kms
Key stringId - ARN for the KMS encryption key. When specifying
kms_key_id
,encrypted
needs to be set to true. Note: The provider must be running with credentials which have theGenerateDataKeyWithoutPlaintext
permission on the specified KMS key as required by the EBS KMS CMK volume provisioning process to prevent a volume from being created and almost immediately deleted. - Multi
Attach boolEnabled - Specifies whether to enable Amazon EBS Multi-Attach. Multi-Attach is supported on
io1
andio2
volumes. - Outpost
Arn string - Amazon Resource Name (ARN) of the Outpost.
- Size int
- Size of the drive in GiBs.
- Snapshot
Id string - A snapshot to base the EBS volume off of.
- Dictionary<string, string>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Throughput int
- Throughput that the volume supports, in MiB/s. Only valid for
type
ofgp3
. - Type string
Type of EBS volume. Can be
standard
,gp2
,gp3
,io1
,io2
,sc1
orst1
(Default:gp2
).NOTE: When changing the
size
,iops
ortype
of an instance, there are considerations to be aware of.
- Availability
Zone string - Availability zone where the EBS volume will exist.
- Encrypted bool
- If true, the disk will be encrypted.
- Final
Snapshot bool - If true, snapshot will be created before volume deletion. Any tags on the volume will be migrated to the snapshot. By default set to false
- Iops int
- Amount of IOPS to provision for the disk. Only valid for
type
ofio1
,io2
orgp3
. - Kms
Key stringId - ARN for the KMS encryption key. When specifying
kms_key_id
,encrypted
needs to be set to true. Note: The provider must be running with credentials which have theGenerateDataKeyWithoutPlaintext
permission on the specified KMS key as required by the EBS KMS CMK volume provisioning process to prevent a volume from being created and almost immediately deleted. - Multi
Attach boolEnabled - Specifies whether to enable Amazon EBS Multi-Attach. Multi-Attach is supported on
io1
andio2
volumes. - Outpost
Arn string - Amazon Resource Name (ARN) of the Outpost.
- Size int
- Size of the drive in GiBs.
- Snapshot
Id string - A snapshot to base the EBS volume off of.
- map[string]string
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Throughput int
- Throughput that the volume supports, in MiB/s. Only valid for
type
ofgp3
. - Type string
Type of EBS volume. Can be
standard
,gp2
,gp3
,io1
,io2
,sc1
orst1
(Default:gp2
).NOTE: When changing the
size
,iops
ortype
of an instance, there are considerations to be aware of.
- availability
Zone String - Availability zone where the EBS volume will exist.
- encrypted Boolean
- If true, the disk will be encrypted.
- final
Snapshot Boolean - If true, snapshot will be created before volume deletion. Any tags on the volume will be migrated to the snapshot. By default set to false
- iops Integer
- Amount of IOPS to provision for the disk. Only valid for
type
ofio1
,io2
orgp3
. - kms
Key StringId - ARN for the KMS encryption key. When specifying
kms_key_id
,encrypted
needs to be set to true. Note: The provider must be running with credentials which have theGenerateDataKeyWithoutPlaintext
permission on the specified KMS key as required by the EBS KMS CMK volume provisioning process to prevent a volume from being created and almost immediately deleted. - multi
Attach BooleanEnabled - Specifies whether to enable Amazon EBS Multi-Attach. Multi-Attach is supported on
io1
andio2
volumes. - outpost
Arn String - Amazon Resource Name (ARN) of the Outpost.
- size Integer
- Size of the drive in GiBs.
- snapshot
Id String - A snapshot to base the EBS volume off of.
- Map<String,String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - throughput Integer
- Throughput that the volume supports, in MiB/s. Only valid for
type
ofgp3
. - type String
Type of EBS volume. Can be
standard
,gp2
,gp3
,io1
,io2
,sc1
orst1
(Default:gp2
).NOTE: When changing the
size
,iops
ortype
of an instance, there are considerations to be aware of.
- availability
Zone string - Availability zone where the EBS volume will exist.
- encrypted boolean
- If true, the disk will be encrypted.
- final
Snapshot boolean - If true, snapshot will be created before volume deletion. Any tags on the volume will be migrated to the snapshot. By default set to false
- iops number
- Amount of IOPS to provision for the disk. Only valid for
type
ofio1
,io2
orgp3
. - kms
Key stringId - ARN for the KMS encryption key. When specifying
kms_key_id
,encrypted
needs to be set to true. Note: The provider must be running with credentials which have theGenerateDataKeyWithoutPlaintext
permission on the specified KMS key as required by the EBS KMS CMK volume provisioning process to prevent a volume from being created and almost immediately deleted. - multi
Attach booleanEnabled - Specifies whether to enable Amazon EBS Multi-Attach. Multi-Attach is supported on
io1
andio2
volumes. - outpost
Arn string - Amazon Resource Name (ARN) of the Outpost.
- size number
- Size of the drive in GiBs.
- snapshot
Id string - A snapshot to base the EBS volume off of.
- {[key: string]: string}
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - throughput number
- Throughput that the volume supports, in MiB/s. Only valid for
type
ofgp3
. - type string
Type of EBS volume. Can be
standard
,gp2
,gp3
,io1
,io2
,sc1
orst1
(Default:gp2
).NOTE: When changing the
size
,iops
ortype
of an instance, there are considerations to be aware of.
- availability_
zone str - Availability zone where the EBS volume will exist.
- encrypted bool
- If true, the disk will be encrypted.
- final_
snapshot bool - If true, snapshot will be created before volume deletion. Any tags on the volume will be migrated to the snapshot. By default set to false
- iops int
- Amount of IOPS to provision for the disk. Only valid for
type
ofio1
,io2
orgp3
. - kms_
key_ strid - ARN for the KMS encryption key. When specifying
kms_key_id
,encrypted
needs to be set to true. Note: The provider must be running with credentials which have theGenerateDataKeyWithoutPlaintext
permission on the specified KMS key as required by the EBS KMS CMK volume provisioning process to prevent a volume from being created and almost immediately deleted. - multi_
attach_ boolenabled - Specifies whether to enable Amazon EBS Multi-Attach. Multi-Attach is supported on
io1
andio2
volumes. - outpost_
arn str - Amazon Resource Name (ARN) of the Outpost.
- size int
- Size of the drive in GiBs.
- snapshot_
id str - A snapshot to base the EBS volume off of.
- Mapping[str, str]
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - throughput int
- Throughput that the volume supports, in MiB/s. Only valid for
type
ofgp3
. - type str
Type of EBS volume. Can be
standard
,gp2
,gp3
,io1
,io2
,sc1
orst1
(Default:gp2
).NOTE: When changing the
size
,iops
ortype
of an instance, there are considerations to be aware of.
- availability
Zone String - Availability zone where the EBS volume will exist.
- encrypted Boolean
- If true, the disk will be encrypted.
- final
Snapshot Boolean - If true, snapshot will be created before volume deletion. Any tags on the volume will be migrated to the snapshot. By default set to false
- iops Number
- Amount of IOPS to provision for the disk. Only valid for
type
ofio1
,io2
orgp3
. - kms
Key StringId - ARN for the KMS encryption key. When specifying
kms_key_id
,encrypted
needs to be set to true. Note: The provider must be running with credentials which have theGenerateDataKeyWithoutPlaintext
permission on the specified KMS key as required by the EBS KMS CMK volume provisioning process to prevent a volume from being created and almost immediately deleted. - multi
Attach BooleanEnabled - Specifies whether to enable Amazon EBS Multi-Attach. Multi-Attach is supported on
io1
andio2
volumes. - outpost
Arn String - Amazon Resource Name (ARN) of the Outpost.
- size Number
- Size of the drive in GiBs.
- snapshot
Id String - A snapshot to base the EBS volume off of.
- Map<String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - throughput Number
- Throughput that the volume supports, in MiB/s. Only valid for
type
ofgp3
. - type String
Type of EBS volume. Can be
standard
,gp2
,gp3
,io1
,io2
,sc1
orst1
(Default:gp2
).NOTE: When changing the
size
,iops
ortype
of an instance, there are considerations to be aware of.
Outputs
All input properties are implicitly available as output properties. Additionally, the Volume resource produces the following output properties:
- Arn string
- Volume ARN (e.g., arn:aws:ec2:us-east-1:123456789012:volume/vol-59fcb34e).
- Create
Time string - Timestamp when volume creation was initiated.
- Id string
- The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- Volume ARN (e.g., arn:aws:ec2:us-east-1:123456789012:volume/vol-59fcb34e).
- Create
Time string - Timestamp when volume creation was initiated.
- Id string
- The provider-assigned unique ID for this managed resource.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- Volume ARN (e.g., arn:aws:ec2:us-east-1:123456789012:volume/vol-59fcb34e).
- create
Time String - Timestamp when volume creation was initiated.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- Volume ARN (e.g., arn:aws:ec2:us-east-1:123456789012:volume/vol-59fcb34e).
- create
Time string - Timestamp when volume creation was initiated.
- id string
- The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
- Volume ARN (e.g., arn:aws:ec2:us-east-1:123456789012:volume/vol-59fcb34e).
- create_
time str - Timestamp when volume creation was initiated.
- id str
- The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- Volume ARN (e.g., arn:aws:ec2:us-east-1:123456789012:volume/vol-59fcb34e).
- create
Time String - Timestamp when volume creation was initiated.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Look up Existing Volume Resource
Get an existing Volume resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: VolumeState, opts?: CustomResourceOptions): Volume
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
availability_zone: Optional[str] = None,
create_time: Optional[str] = None,
encrypted: Optional[bool] = None,
final_snapshot: Optional[bool] = None,
iops: Optional[int] = None,
kms_key_id: Optional[str] = None,
multi_attach_enabled: Optional[bool] = None,
outpost_arn: Optional[str] = None,
size: Optional[int] = None,
snapshot_id: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
throughput: Optional[int] = None,
type: Optional[str] = None) -> Volume
func GetVolume(ctx *Context, name string, id IDInput, state *VolumeState, opts ...ResourceOption) (*Volume, error)
public static Volume Get(string name, Input<string> id, VolumeState? state, CustomResourceOptions? opts = null)
public static Volume get(String name, Output<String> id, VolumeState state, CustomResourceOptions options)
resources: _: type: aws:ebs:Volume get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- Volume ARN (e.g., arn:aws:ec2:us-east-1:123456789012:volume/vol-59fcb34e).
- Availability
Zone string - Availability zone where the EBS volume will exist.
- Create
Time string - Timestamp when volume creation was initiated.
- Encrypted bool
- If true, the disk will be encrypted.
- Final
Snapshot bool - If true, snapshot will be created before volume deletion. Any tags on the volume will be migrated to the snapshot. By default set to false
- Iops int
- Amount of IOPS to provision for the disk. Only valid for
type
ofio1
,io2
orgp3
. - Kms
Key stringId - ARN for the KMS encryption key. When specifying
kms_key_id
,encrypted
needs to be set to true. Note: The provider must be running with credentials which have theGenerateDataKeyWithoutPlaintext
permission on the specified KMS key as required by the EBS KMS CMK volume provisioning process to prevent a volume from being created and almost immediately deleted. - Multi
Attach boolEnabled - Specifies whether to enable Amazon EBS Multi-Attach. Multi-Attach is supported on
io1
andio2
volumes. - Outpost
Arn string - Amazon Resource Name (ARN) of the Outpost.
- Size int
- Size of the drive in GiBs.
- Snapshot
Id string - A snapshot to base the EBS volume off of.
- Dictionary<string, string>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Throughput int
- Throughput that the volume supports, in MiB/s. Only valid for
type
ofgp3
. - Type string
Type of EBS volume. Can be
standard
,gp2
,gp3
,io1
,io2
,sc1
orst1
(Default:gp2
).NOTE: When changing the
size
,iops
ortype
of an instance, there are considerations to be aware of.
- Arn string
- Volume ARN (e.g., arn:aws:ec2:us-east-1:123456789012:volume/vol-59fcb34e).
- Availability
Zone string - Availability zone where the EBS volume will exist.
- Create
Time string - Timestamp when volume creation was initiated.
- Encrypted bool
- If true, the disk will be encrypted.
- Final
Snapshot bool - If true, snapshot will be created before volume deletion. Any tags on the volume will be migrated to the snapshot. By default set to false
- Iops int
- Amount of IOPS to provision for the disk. Only valid for
type
ofio1
,io2
orgp3
. - Kms
Key stringId - ARN for the KMS encryption key. When specifying
kms_key_id
,encrypted
needs to be set to true. Note: The provider must be running with credentials which have theGenerateDataKeyWithoutPlaintext
permission on the specified KMS key as required by the EBS KMS CMK volume provisioning process to prevent a volume from being created and almost immediately deleted. - Multi
Attach boolEnabled - Specifies whether to enable Amazon EBS Multi-Attach. Multi-Attach is supported on
io1
andio2
volumes. - Outpost
Arn string - Amazon Resource Name (ARN) of the Outpost.
- Size int
- Size of the drive in GiBs.
- Snapshot
Id string - A snapshot to base the EBS volume off of.
- map[string]string
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Throughput int
- Throughput that the volume supports, in MiB/s. Only valid for
type
ofgp3
. - Type string
Type of EBS volume. Can be
standard
,gp2
,gp3
,io1
,io2
,sc1
orst1
(Default:gp2
).NOTE: When changing the
size
,iops
ortype
of an instance, there are considerations to be aware of.
- arn String
- Volume ARN (e.g., arn:aws:ec2:us-east-1:123456789012:volume/vol-59fcb34e).
- availability
Zone String - Availability zone where the EBS volume will exist.
- create
Time String - Timestamp when volume creation was initiated.
- encrypted Boolean
- If true, the disk will be encrypted.
- final
Snapshot Boolean - If true, snapshot will be created before volume deletion. Any tags on the volume will be migrated to the snapshot. By default set to false
- iops Integer
- Amount of IOPS to provision for the disk. Only valid for
type
ofio1
,io2
orgp3
. - kms
Key StringId - ARN for the KMS encryption key. When specifying
kms_key_id
,encrypted
needs to be set to true. Note: The provider must be running with credentials which have theGenerateDataKeyWithoutPlaintext
permission on the specified KMS key as required by the EBS KMS CMK volume provisioning process to prevent a volume from being created and almost immediately deleted. - multi
Attach BooleanEnabled - Specifies whether to enable Amazon EBS Multi-Attach. Multi-Attach is supported on
io1
andio2
volumes. - outpost
Arn String - Amazon Resource Name (ARN) of the Outpost.
- size Integer
- Size of the drive in GiBs.
- snapshot
Id String - A snapshot to base the EBS volume off of.
- Map<String,String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - throughput Integer
- Throughput that the volume supports, in MiB/s. Only valid for
type
ofgp3
. - type String
Type of EBS volume. Can be
standard
,gp2
,gp3
,io1
,io2
,sc1
orst1
(Default:gp2
).NOTE: When changing the
size
,iops
ortype
of an instance, there are considerations to be aware of.
- arn string
- Volume ARN (e.g., arn:aws:ec2:us-east-1:123456789012:volume/vol-59fcb34e).
- availability
Zone string - Availability zone where the EBS volume will exist.
- create
Time string - Timestamp when volume creation was initiated.
- encrypted boolean
- If true, the disk will be encrypted.
- final
Snapshot boolean - If true, snapshot will be created before volume deletion. Any tags on the volume will be migrated to the snapshot. By default set to false
- iops number
- Amount of IOPS to provision for the disk. Only valid for
type
ofio1
,io2
orgp3
. - kms
Key stringId - ARN for the KMS encryption key. When specifying
kms_key_id
,encrypted
needs to be set to true. Note: The provider must be running with credentials which have theGenerateDataKeyWithoutPlaintext
permission on the specified KMS key as required by the EBS KMS CMK volume provisioning process to prevent a volume from being created and almost immediately deleted. - multi
Attach booleanEnabled - Specifies whether to enable Amazon EBS Multi-Attach. Multi-Attach is supported on
io1
andio2
volumes. - outpost
Arn string - Amazon Resource Name (ARN) of the Outpost.
- size number
- Size of the drive in GiBs.
- snapshot
Id string - A snapshot to base the EBS volume off of.
- {[key: string]: string}
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - throughput number
- Throughput that the volume supports, in MiB/s. Only valid for
type
ofgp3
. - type string
Type of EBS volume. Can be
standard
,gp2
,gp3
,io1
,io2
,sc1
orst1
(Default:gp2
).NOTE: When changing the
size
,iops
ortype
of an instance, there are considerations to be aware of.
- arn str
- Volume ARN (e.g., arn:aws:ec2:us-east-1:123456789012:volume/vol-59fcb34e).
- availability_
zone str - Availability zone where the EBS volume will exist.
- create_
time str - Timestamp when volume creation was initiated.
- encrypted bool
- If true, the disk will be encrypted.
- final_
snapshot bool - If true, snapshot will be created before volume deletion. Any tags on the volume will be migrated to the snapshot. By default set to false
- iops int
- Amount of IOPS to provision for the disk. Only valid for
type
ofio1
,io2
orgp3
. - kms_
key_ strid - ARN for the KMS encryption key. When specifying
kms_key_id
,encrypted
needs to be set to true. Note: The provider must be running with credentials which have theGenerateDataKeyWithoutPlaintext
permission on the specified KMS key as required by the EBS KMS CMK volume provisioning process to prevent a volume from being created and almost immediately deleted. - multi_
attach_ boolenabled - Specifies whether to enable Amazon EBS Multi-Attach. Multi-Attach is supported on
io1
andio2
volumes. - outpost_
arn str - Amazon Resource Name (ARN) of the Outpost.
- size int
- Size of the drive in GiBs.
- snapshot_
id str - A snapshot to base the EBS volume off of.
- Mapping[str, str]
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - throughput int
- Throughput that the volume supports, in MiB/s. Only valid for
type
ofgp3
. - type str
Type of EBS volume. Can be
standard
,gp2
,gp3
,io1
,io2
,sc1
orst1
(Default:gp2
).NOTE: When changing the
size
,iops
ortype
of an instance, there are considerations to be aware of.
- arn String
- Volume ARN (e.g., arn:aws:ec2:us-east-1:123456789012:volume/vol-59fcb34e).
- availability
Zone String - Availability zone where the EBS volume will exist.
- create
Time String - Timestamp when volume creation was initiated.
- encrypted Boolean
- If true, the disk will be encrypted.
- final
Snapshot Boolean - If true, snapshot will be created before volume deletion. Any tags on the volume will be migrated to the snapshot. By default set to false
- iops Number
- Amount of IOPS to provision for the disk. Only valid for
type
ofio1
,io2
orgp3
. - kms
Key StringId - ARN for the KMS encryption key. When specifying
kms_key_id
,encrypted
needs to be set to true. Note: The provider must be running with credentials which have theGenerateDataKeyWithoutPlaintext
permission on the specified KMS key as required by the EBS KMS CMK volume provisioning process to prevent a volume from being created and almost immediately deleted. - multi
Attach BooleanEnabled - Specifies whether to enable Amazon EBS Multi-Attach. Multi-Attach is supported on
io1
andio2
volumes. - outpost
Arn String - Amazon Resource Name (ARN) of the Outpost.
- size Number
- Size of the drive in GiBs.
- snapshot
Id String - A snapshot to base the EBS volume off of.
- Map<String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - throughput Number
- Throughput that the volume supports, in MiB/s. Only valid for
type
ofgp3
. - type String
Type of EBS volume. Can be
standard
,gp2
,gp3
,io1
,io2
,sc1
orst1
(Default:gp2
).NOTE: When changing the
size
,iops
ortype
of an instance, there are considerations to be aware of.
Import
Using pulumi import
, import EBS Volumes using the id
. For example:
$ pulumi import aws:ebs/volume:Volume id vol-049df61146c4d7901
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.