ansible.builtin.azure_rm_storageaccount_info (v2.9.17) — module

Get storage account facts

| "added in version" 2.9 of ansible.builtin"

Authors: Chris Houseknecht (@chouseknecht), Matt Davis (@nitzmahone)

preview | supported by community

Install Ansible via pip

Install with pip install ansible==2.9.17

Description

Get facts for one storage account or all storage accounts within a resource group.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
    - name: Get facts for one account
      azure_rm_storageaccount_info:
        resource_group: myResourceGroup
        name: clh0002
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
    - name: Get facts for all accounts in a resource group
      azure_rm_storageaccount_info:
        resource_group: myResourceGroup
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
    - name: Get facts for all accounts by tags
      azure_rm_storageaccount_info:
        tags:
          - testing
          - foo:bar

Inputs

    
name:
    description:
    - Only show results for a specific account.

tags:
    description:
    - Limit results by providing a list of tags. Format tags as 'key' or 'key:value'.

secret:
    description:
    - Azure client secret. Use when authenticating with a Service Principal.
    type: str

tenant:
    description:
    - Azure tenant ID. Use when authenticating with a Service Principal.
    type: str

ad_user:
    description:
    - Active Directory username. Use when authenticating with an Active Directory user
      rather than service principal.
    type: str

profile:
    description:
    - Security profile found in ~/.azure/credentials file.
    type: str

password:
    description:
    - Active Directory user password. Use when authenticating with an Active Directory
      user rather than service principal.
    type: str

client_id:
    description:
    - Azure client ID. Use when authenticating with a Service Principal.
    type: str

api_profile:
    default: latest
    description:
    - Selects an API profile to use when communicating with Azure services. Default value
      of C(latest) is appropriate for public clouds; future values will allow use with
      Azure Stack.
    type: str
    version_added: 0.0.1
    version_added_collection: azure.azcollection

auth_source:
    choices:
    - auto
    - cli
    - credential_file
    - env
    - msi
    default: auto
    description:
    - Controls the source of the credentials to use for authentication.
    - Can also be set via the C(ANSIBLE_AZURE_AUTH_SOURCE) environment variable.
    - When set to C(auto) (the default) the precedence is module parameters -> C(env)
      -> C(credential_file) -> C(cli).
    - When set to C(env), the credentials will be read from the environment variables
    - When set to C(credential_file), it will read the profile from C(~/.azure/credentials).
    - When set to C(cli), the credentials will be sources from the Azure CLI profile.
      C(subscription_id) or the environment variable C(AZURE_SUBSCRIPTION_ID) can be used
      to identify the subscription ID if more than one is present otherwise the default
      az cli subscription is used.
    - When set to C(msi), the host machine must be an azure resource with an enabled MSI
      extension. C(subscription_id) or the environment variable C(AZURE_SUBSCRIPTION_ID)
      can be used to identify the subscription ID if the resource is granted access to
      more than one subscription, otherwise the first subscription is chosen.
    - The C(msi) was added in Ansible 2.6.
    type: str
    version_added: 0.0.1
    version_added_collection: azure.azcollection

resource_group:
    aliases:
    - resource_group_name
    description:
    - Limit results to a resource group. Required when filtering by name.

show_blob_cors:
    description:
    - Show the blob CORS settings for each blob related to the storage account.
    - Querying all storage accounts will take a long time.
    type: bool
    version_added: '2.8'
    version_added_collection: ansible.builtin

subscription_id:
    description:
    - Your Azure subscription Id.
    type: str

cloud_environment:
    default: AzureCloud
    description:
    - For cloud environments other than the US public cloud, the environment name (as
      defined by Azure Python SDK, eg, C(AzureChinaCloud), C(AzureUSGovernment)), or a
      metadata discovery endpoint URL (required for Azure Stack). Can also be set via
      credential file profile or the C(AZURE_CLOUD_ENVIRONMENT) environment variable.
    type: str
    version_added: 0.0.1
    version_added_collection: azure.azcollection

adfs_authority_url:
    description:
    - Azure AD authority url. Use when authenticating with Username/password, and has
      your own ADFS authority.
    type: str
    version_added: 0.0.1
    version_added_collection: azure.azcollection

cert_validation_mode:
    choices:
    - ignore
    - validate
    description:
    - Controls the certificate validation behavior for Azure endpoints. By default, all
      modules will validate the server certificate, but when an HTTPS proxy is in use,
      or against Azure Stack, it may be necessary to disable this behavior by passing
      C(ignore). Can also be set via credential file profile or the C(AZURE_CERT_VALIDATION)
      environment variable.
    type: str
    version_added: 0.0.1
    version_added_collection: azure.azcollection

show_connection_string:
    description:
    - Show the connection string for each of the storageaccount's endpoints.
    - For convenient usage, C(show_connection_string) will also show the access keys for
      each of the storageaccount's endpoints.
    - Note that it will cost a lot of time when list all storageaccount rather than query
      a single one.
    type: bool
    version_added: '2.8'
    version_added_collection: ansible.builtin

Outputs

azure_storageaccounts:
  description:
  - List of storage account dicts.
  example:
  - id: /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/myResourceGroups/testing/providers/Microsoft.Storage/storageAccounts/testaccount001
    location: eastus2
    name: testaccount001
    properties:
      accountType: Standard_LRS
      creationTime: '2016-03-28T02:46:58.290113Z'
      primaryEndpoints:
        blob: https://testaccount001.blob.core.windows.net/
        file: https://testaccount001.file.core.windows.net/
        queue: https://testaccount001.queue.core.windows.net/
        table: https://testaccount001.table.core.windows.net/
      primaryLocation: eastus2
      provisioningState: Succeeded
      statusOfPrimary: Available
    tags: {}
    type: Microsoft.Storage/storageAccounts
  returned: always
  type: list
storageaccounts:
  contains:
    access_tier:
      description:
      - The access tier for this storage account.
      returned: always
      sample: Hot
      type: str
    account_type:
      description:
      - Type of storage account.
      - C(Standard_ZRS) and C(Premium_LRS) accounts cannot be changed to other account
        types.
      - Other account types cannot be changed to C(Standard_ZRS) or C(Premium_LRS).
      returned: always
      sample: Standard_ZRS
      type: str
    custom_domain:
      contains:
        name:
          description:
          - CNAME source.
          returned: always
          sample: testaccount
          type: str
        use_sub_domain:
          description:
          - Whether to use sub domain.
          returned: always
          sample: true
          type: bool
      description:
      - User domain assigned to the storage account.
      - Must be a dictionary with I(name) and I(use_sub_domain) keys where I(name)
        is the CNAME source.
      returned: always
      type: complex
    https_only:
      description:
      - Allows https traffic only to storage service when set to C(true).
      returned: always
      sample: false
      type: bool
    id:
      description:
      - Resource ID.
      returned: always
      sample: /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/t
        estaccount001
      type: str
    kind:
      description:
      - The kind of storage.
      returned: always
      sample: Storage
      type: str
    location:
      description:
      - Valid Azure location. Defaults to location of the resource group.
      returned: always
      sample: eastus
      type: str
    name:
      description:
      - Name of the storage account to update or create.
      returned: always
      sample: testaccount001
      type: str
    primary_endpoints:
      contains:
        blob:
          contains:
            connectionstring:
              description:
              - Connectionstring of the blob endpoint.
              returned: always
              sample: DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=X;AccountKey=X;BlobEndpoint=X
              type: str
            endpoint:
              description:
              - The primary blob endpoint.
              returned: always
              sample: https://testaccount001.blob.core.windows.net/
              type: str
          description:
          - The primary blob endpoint and connection string.
          returned: always
          type: complex
        key:
          description:
          - The account key for the primary_endpoints
          returned: always
          sample: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
          type: str
        queue:
          contains:
            connectionstring:
              description:
              - Connectionstring of the queue endpoint.
              returned: always
              sample: DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=X;AccountKey=X;QueueEndpoint=X
              type: str
            endpoint:
              description:
              - The primary queue endpoint.
              returned: always
              sample: https://testaccount001.queue.core.windows.net/
              type: str
          description:
          - The primary queue endpoint and connection string.
          returned: always
          type: complex
        table:
          contains:
            connectionstring:
              description:
              - Connectionstring of the table endpoint.
              returned: always
              sample: DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=X;AccountKey=X;TableEndpoint=X
              type: str
            endpoint:
              description:
              - The primary table endpoint.
              returned: always
              sample: https://testaccount001.table.core.windows.net/
              type: str
          description:
          - The primary table endpoint and connection string.
          returned: always
          type: complex
      description:
      - URLs to retrieve a public I(blob), I(queue), or I(table) object.
      - Note that C(Standard_ZRS) and C(Premium_LRS) accounts only return the blob
        endpoint.
      returned: always
      type: complex
    primary_location:
      description:
      - The location of the primary data center for the storage account.
      returned: always
      sample: eastus
      type: str
    provisioning_state:
      description:
      - The status of the storage account at the time the operation was called.
      - Possible values include C(Creating), C(ResolvingDNS), C(Succeeded).
      returned: always
      sample: Succeeded
      type: str
    secondary_endpoints:
      contains:
        blob:
          contains:
            connectionstring:
              description:
              - Connectionstring of the blob endpoint.
              returned: always
              sample: DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=X;AccountKey=X;BlobEndpoint=X
              type: str
            endpoint:
              description:
              - The secondary blob endpoint.
              returned: always
              sample: https://testaccount001.blob.core.windows.net/
              type: str
          description:
          - The secondary blob endpoint and connection string.
          returned: always
          type: complex
        key:
          description:
          - The account key for the secondary_endpoints
          sample: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
        queue:
          contains:
            connectionstring:
              description:
              - Connectionstring of the queue endpoint.
              returned: always
              sample: DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=X;AccountKey=X;QueueEndpoint=X
              type: str
            endpoint:
              description:
              - The secondary queue endpoint.
              returned: always
              sample: https://testaccount001.queue.core.windows.net/
              type: str
          description:
          - The secondary queue endpoint and connection string.
          returned: always
          type: complex
        table:
          contains:
            connectionstring:
              description:
              - Connectionstring of the table endpoint.
              returned: always
              sample: DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=X;AccountKey=X;TableEndpoint=X
              type: str
            endpoint:
              description:
              - The secondary table endpoint.
              returned: always
              sample: https://testaccount001.table.core.windows.net/
              type: str
          description:
          - The secondary table endpoint and connection string.
          returned: always
          type: complex
      description:
      - The URLs to retrieve a public I(blob), I(queue), or I(table) object from the
        secondary location.
      - Only available if the SKU I(name=Standard_RAGRS).
      returned: always
      type: complex
    secondary_location:
      description:
      - The location of the geo-replicated secondary for the storage account.
      - Only available if the I(account_type=Standard_GRS) or I(account_type=Standard_RAGRS).
      returned: always
      sample: westus
      type: str
    status_of_primary:
      description:
      - Status of the primary location of the storage account; either C(available)
        or C(unavailable).
      returned: always
      sample: available
      type: str
    status_of_secondary:
      description:
      - Status of the secondary location of the storage account; either C(available)
        or C(unavailable).
      returned: always
      sample: available
      type: str
    tags:
      description:
      - Resource tags.
      returned: always
      sample:
        tag1: abc
      type: dict
  description:
  - List of storage account dicts in resource module's parameter format.
  returned: always
  type: complex

See also