From 246838b7307067526a4ef6cc4c03de5d1c58e409 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20B=C5=82a=C5=BC?= Date: Fri, 29 Sep 2023 08:02:28 +0200 Subject: [PATCH] efs : add elastic throughput_mode --- plugins/modules/efs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/modules/efs.py b/plugins/modules/efs.py index df79babc92c..bf4d57b9a96 100644 --- a/plugins/modules/efs.py +++ b/plugins/modules/efs.py @@ -72,7 +72,7 @@ throughput_mode: description: - The throughput_mode for the file system to be created. - choices: ['bursting', 'provisioned'] + choices: ['bursting', 'provisioned', 'elastic'] type: str provisioned_throughput_in_mibps: description: @@ -733,7 +733,7 @@ def main(): required=False, type="str", choices=["general_purpose", "max_io"], default="general_purpose" ), transition_to_ia=dict(required=False, type="str", choices=["None", "7", "14", "30", "60", "90"], default=None), - throughput_mode=dict(required=False, type="str", choices=["bursting", "provisioned"], default=None), + throughput_mode=dict(required=False, type="str", choices=["bursting", "provisioned", "elastic"], default=None), provisioned_throughput_in_mibps=dict(required=False, type="float"), wait=dict(required=False, type="bool", default=False), wait_timeout=dict(required=False, type="int", default=0),