Skip to content

Commit 2aa0220

Browse files
authored
Add enterprise to datalake scale parameter (#141)
Signed-off-by: Jim Enright <jenright@cloudera.com>
1 parent 72a58ba commit 2aa0220

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

plugins/modules/datalake.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,12 @@
8888
scale:
8989
description:
9090
- The scale of the datalake.
91+
- Note that the choice of MEDIUM_DUTY_HA is unsupported since datalake version 7.2.18.
9192
type: str
9293
required: False
9394
choices:
9495
- LIGHT_DUTY
96+
- ENTERPRISE
9597
- MEDIUM_DUTY_HA
9698
default: LIGHT_DUTY
9799
tags:
@@ -661,7 +663,7 @@ def main():
661663

662664
environment=dict(required=False, type='str', aliases=['env']),
663665
runtime=dict(required=False, type='str'),
664-
scale=dict(required=False, type='str', choices=['LIGHT_DUTY', 'MEDIUM_DUTY_HA']),
666+
scale=dict(required=False, type='str', choices=['LIGHT_DUTY', 'ENTERPRISE', 'MEDIUM_DUTY_HA']),
665667
tags=dict(required=False, type='dict', aliases=['datalake_tags']),
666668

667669
force=dict(required=False, type='bool', default=False),

0 commit comments

Comments
 (0)