Volume

Creating a gp3 volume

resources:
  # gp3 - Default (3,000 IOPS, 125 MB/s baseline included)
  - name: gp3-default-volume
    type: aws_ec2_volume
    props:
      availability_zone: "us-east-1a"
      size: 100
      volume_type: "gp3"
      # iops: 3000 (default, included in storage price)
      # throughput: 125 (default, included in storage price)

  # gp3 - With additional IOPS and throughput
  - name: gp3-enhanced-volume
    type: aws_ec2_volume
    props:
      availability_zone: "us-east-1a"
      size: 200
      volume_type: "gp3"
      iops: 5000  # 2,000 above baseline
      throughput: 150  # 25 MB/s above baseline

Example price for above configuration

Creating a gp2 volume

Example price for above configuration

Creating an io2 volume

Example price for above configuration

Creating a io1 volume

Example price for above configuration

Creating a st1 volume

Example price for above configuration

Creating a sc1 volume

Example price for above configuration

Last updated

Was this helpful?