exec.azurerm.compute.virtual_machine_extension_image

Azure Resource Manager (ARM) Compute Virtual Machine Extension Image Operations Execution Module

New in version 2.0.0.

maintainer:

<devops@eitr.tech>

configuration:

This module requires Azure Resource Manager credentials to be passed as keyword arguments to every function or via acct in order to work properly.

Required provider parameters:

if using username and password:
  • subscription_id
  • username
  • password
if using a service principal:
  • subscription_id
  • tenant
  • client_id
  • secret

Optional provider parameters:

cloud_environment: Used to point the cloud driver to different API endpoints, such as Azure GovCloud. Possible values:

  • AZURE_PUBLIC_CLOUD (default)
  • AZURE_CHINA_CLOUD
  • AZURE_US_GOV_CLOUD
  • AZURE_GERMAN_CLOUD
idem_azurerm.exec.azurerm.compute.virtual_machine_extension_image.get(hub, ctx, location, publisher, extension_type, version, **kwargs)

New in version 2.0.0.

Gets a virtual machine extension image.

Parameters:
  • location – The name of a supported Azure region.
  • publisher – The publisher of the extension image.
  • extension_type – The type of extension by the publisher.
  • version – The version of the extension type.

CLI Example:

azurerm.compute.virtual_machine_extension.get test_loc test_publisher test_type test_version
idem_azurerm.exec.azurerm.compute.virtual_machine_extension_image.list_types(hub, ctx, location, publisher, **kwargs)

New in version 2.0.0.

Gets a list of virtual machine extension image types.

Parameters:
  • location – The name of a supported Azure region.
  • publisher – The name of the publisher of the extension types.

CLI Example:

azurerm.compute.virtual_machine_extension_image.list_types test_loc test_publisher
idem_azurerm.exec.azurerm.compute.virtual_machine_extension_image.list_versions(hub, ctx, location, publisher, extension_type, **kwargs)

New in version 2.0.0.

Gets a list of virtual machine extension image versions.

Parameters:
  • location – The name of a supported Azure region.
  • publisher – The name of the publisher of the extension.
  • extension_type – The type of extension from the publisher to get the version(s) for.

CLI Example:

azurerm.compute.virtual_machine_extension_image.list_versions test_loc test_publisher test_type