mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
azure_rm_managed_disk additional disk types (#54644)
This commit is contained in:
committed by
Zim Kalinowski
parent
01f63ee871
commit
97e7266633
@@ -45,10 +45,18 @@ options:
|
||||
- Valid Azure location. Defaults to location of the resource group.
|
||||
storage_account_type:
|
||||
description:
|
||||
- "Type of storage for the managed disk: C(Standard_LRS) or C(Premium_LRS). If not specified the disk is created C(Standard_LRS)."
|
||||
- "Type of storage for the managed disk."
|
||||
- "If not specified, the disk is created as C(Standard_LRS)."
|
||||
- "C(Standard_LRS) is for Standard HDD."
|
||||
- "C(StandardSSD_LRS) (added in 2.8) is for Standard SSD."
|
||||
- "C(Premium_LRS) is for Premium SSD."
|
||||
- "C(UltraSSD_LRS) (added in 2.8) is for Ultra SSD, which is in preview mode, and only available on select instance types."
|
||||
- "See https://docs.microsoft.com/en-us/azure/virtual-machines/windows/disks-types for more information about disk types."
|
||||
choices:
|
||||
- Standard_LRS
|
||||
- StandardSSD_LRS
|
||||
- Premium_LRS
|
||||
- UltraSSD_LRS
|
||||
create_option:
|
||||
description:
|
||||
- "Allowed values: empty, import, copy.
|
||||
@@ -201,7 +209,7 @@ class AzureRMManagedDisk(AzureRMModuleBase):
|
||||
),
|
||||
storage_account_type=dict(
|
||||
type='str',
|
||||
choices=['Standard_LRS', 'Premium_LRS']
|
||||
choices=['Standard_LRS', 'StandardSSD_LRS', 'Premium_LRS', 'UltraSSD_LRS']
|
||||
),
|
||||
create_option=dict(
|
||||
type='str',
|
||||
|
||||
@@ -81,7 +81,8 @@ azure_managed_disk:
|
||||
type: str
|
||||
storage_account_type:
|
||||
description:
|
||||
- Type of storage for the managed disk
|
||||
- Type of storage for the managed disk.
|
||||
- See https://docs.microsoft.com/en-us/azure/virtual-machines/windows/disks-types for more information about this type.
|
||||
type: str
|
||||
sample: Standard_LRS
|
||||
create_option:
|
||||
|
||||
Reference in New Issue
Block a user