Skip to content

Commit

Permalink
ec2_launch_template: add option to define custom throughput
Browse files Browse the repository at this point in the history
  • Loading branch information
gocubsgo725 committed Sep 26, 2023
1 parent bac5820 commit 05da17e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions plugins/modules/ec2_launch_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,11 @@
volume_type:
description: The volume type
type: str
volume_type:
description:
- The throughput to provision for a gp3 volume, with a maximum of 1,000 MiB/s.
- Valid Range: Minimum value of 125. Maximum value of 1000.
type: int
cpu_options:
description:
- Choose CPU settings for the EC2 instances that will be created with this template.
Expand Down Expand Up @@ -731,6 +736,7 @@ def main():
snapshot_id=dict(),
volume_size=dict(type="int"),
volume_type=dict(),
throughput=dict(type="int"),
),
),
no_device=dict(),
Expand Down

0 comments on commit 05da17e

Please sign in to comment.