Skip to content

Commit

Permalink
efs : add elastic throughput_mode
Browse files Browse the repository at this point in the history
  • Loading branch information
gocubsgo725 committed Sep 29, 2023
1 parent bac5820 commit 246838b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/modules/efs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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),
Expand Down

0 comments on commit 246838b

Please sign in to comment.