{"library":"pulumi-azure-native","title":"Pulumi Azure Native","description":"Pulumi Azure Native is a Pulumi provider that enables users to manage Azure resources directly from the Azure Resource Manager (ARM) API. It offers complete coverage of Azure resources and is updated frequently, often with new features and schema changes. The current version is 3.16.0, with releases occurring roughly every 2-4 weeks.","language":"python","status":"active","last_verified":"Sat May 16","install":{"commands":["pip install pulumi-azure-native"],"cli":{"name":"pulumi","version":"sh: 1: pulumi: not found"}},"imports":["from pulumi_azure_native import resources","from pulumi_azure_native import storage","from pulumi_azure_native.storage import SkuArgs"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import pulumi\nimport pulumi_azure_native as azure_native\nimport os\n\n# Pulumi requires Azure credentials to be configured (e.g., via `az login` or environment variables).\n# The Azure location is usually set via `pulumi config set azure-native:location eastus`.\n\n# Define a unique suffix for resource names to avoid conflicts\n# In a real project, this might come from pulumi.StackReference or config.\nstack_suffix = os.environ.get(\"PULUMI_STACK_SUFFIX\", \"dev\").lower()\n\n# Create an Azure Resource Group\nresource_group = azure_native.resources.ResourceGroup(\"my-resource-group\",\n    resource_group_name=f\"my-pulumi-rg-{stack_suffix}\",\n    location=\"EastUS\") # Location often configured globally via 'pulumi config set azure-native:location'\n\n# Create an Azure Storage Account\n# Note: Storage account names must be globally unique and lowercase.\nstorage_account = azure_native.storage.StorageAccount(\"mystorageaccount\",\n    resource_group_name=resource_group.name, # Pulumi automatically unwraps output properties\n    account_name=f\"mypulumiaccount{stack_suffix}123\",\n    location=resource_group.location,\n    sku=azure_native.storage.SkuArgs(name=\"Standard_LRS\"),\n    kind=\"StorageV2\")\n\npulumi.export(\"resource_group_name\", resource_group.name)\npulumi.export(\"storage_account_name\", storage_account.name)\npulumi.export(\"storage_account_primary_blob_endpoint\", storage_account.primary_endpoints.apply(lambda endpoints: endpoints.blob))\n","lang":"python","description":"This quickstart deploys an Azure Resource Group and a Storage Account using `pulumi-azure-native`. Ensure you have Pulumi CLI installed, Azure CLI logged in (`az login`), and set a default Azure location (`pulumi config set azure-native:location eastus`). The `stack_suffix` is used to ensure globally unique names for resources like storage accounts.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":{"tag":null,"tag_description":null,"last_tested":"2026-05-16","installed_version":"3.18.0","pypi_latest":"3.18.0","is_stale":false,"summary":{"python_range":"3.10–3.9","success_rate":100,"avg_install_s":22.9,"avg_import_s":1.42,"wheel_type":"wheel"},"results":[{"runtime":"python:3.10-alpine","python_version":"3.10","os_libc":"alpine (musl)","variant":"pulumi-azure-native","exit_code":0,"wheel_type":"wheel","failure_reason":null,"import_side_effects":"clean","install_time_s":null,"import_time_s":1.55,"mem_mb":25.1,"disk_size":"360.7M"},{"runtime":"python:3.10-slim","python_version":"3.10","os_libc":"slim (glibc)","variant":"pulumi-azure-native","exit_code":0,"wheel_type":"wheel","failure_reason":null,"import_side_effects":"clean","install_time_s":21.6,"import_time_s":0.73,"mem_mb":19.9,"disk_size":"347M"},{"runtime":"python:3.11-alpine","python_version":"3.11","os_libc":"alpine (musl)","variant":"pulumi-azure-native","exit_code":0,"wheel_type":"wheel","failure_reason":null,"import_side_effects":"clean","install_time_s":null,"import_time_s":2.06,"mem_mb":27.3,"disk_size":"445.0M"},{"runtime":"python:3.11-slim","python_version":"3.11","os_libc":"slim (glibc)","variant":"pulumi-azure-native","exit_code":0,"wheel_type":"wheel","failure_reason":null,"import_side_effects":"clean","install_time_s":21.1,"import_time_s":1.24,"mem_mb":22.3,"disk_size":"431M"},{"runtime":"python:3.12-alpine","python_version":"3.12","os_libc":"alpine (musl)","variant":"pulumi-azure-native","exit_code":0,"wheel_type":"wheel","failure_reason":null,"import_side_effects":"clean","install_time_s":null,"import_time_s":2.03,"mem_mb":26.8,"disk_size":"430.7M"},{"runtime":"python:3.12-slim","python_version":"3.12","os_libc":"slim (glibc)","variant":"pulumi-azure-native","exit_code":0,"wheel_type":"wheel","failure_reason":null,"import_side_effects":"clean","install_time_s":22.9,"import_time_s":1.42,"mem_mb":21.3,"disk_size":"420M"},{"runtime":"python:3.13-alpine","python_version":"3.13","os_libc":"alpine (musl)","variant":"pulumi-azure-native","exit_code":0,"wheel_type":"wheel","failure_reason":null,"import_side_effects":"clean","install_time_s":null,"import_time_s":1.92,"mem_mb":27.4,"disk_size":"427.0M"},{"runtime":"python:3.13-slim","python_version":"3.13","os_libc":"slim (glibc)","variant":"pulumi-azure-native","exit_code":0,"wheel_type":"wheel","failure_reason":null,"import_side_effects":"clean","install_time_s":23.7,"import_time_s":1.36,"mem_mb":22.3,"disk_size":"416M"},{"runtime":"python:3.9-alpine","python_version":"3.9","os_libc":"alpine (musl)","variant":"pulumi-azure-native","exit_code":0,"wheel_type":"wheel","failure_reason":null,"import_side_effects":"clean","install_time_s":null,"import_time_s":1.19,"mem_mb":21.9,"disk_size":"355.1M"},{"runtime":"python:3.9-slim","python_version":"3.9","os_libc":"slim (glibc)","variant":"pulumi-azure-native","exit_code":0,"wheel_type":"wheel","failure_reason":null,"import_side_effects":"clean","install_time_s":25.2,"import_time_s":0.69,"mem_mb":17.2,"disk_size":"341M"}]}}