From 52acb01619c66fd844d125d805f58a27e802967d Mon Sep 17 00:00:00 2001 From: anh pham <57529783+ruoibmt@users.noreply.github.com> Date: Thu, 16 Nov 2023 14:17:03 +0700 Subject: [PATCH] add throughput mode elastic for efs --- 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),