From 05da17e4f7d92f25842e8032038f7f3f9b61676f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20B=C5=82a=C5=BC?= Date: Tue, 26 Sep 2023 14:56:46 +0200 Subject: [PATCH] ec2_launch_template: add option to define custom throughput --- plugins/modules/ec2_launch_template.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/modules/ec2_launch_template.py b/plugins/modules/ec2_launch_template.py index 6cd1de3fb0d..608a501ef23 100644 --- a/plugins/modules/ec2_launch_template.py +++ b/plugins/modules/ec2_launch_template.py @@ -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. @@ -731,6 +736,7 @@ def main(): snapshot_id=dict(), volume_size=dict(type="int"), volume_type=dict(), + throughput=dict(type="int"), ), ), no_device=dict(),