1. Packages
  2. Azure Native
  3. Upgrade Guide for Azure Native v2 to v3
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.89.1 published on Sunday, Mar 2, 2025 by Pulumi

Upgrade Guide for Azure Native v2 to v3

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.89.1 published on Sunday, Mar 2, 2025 by Pulumi

    About

    The Pulumi Azure Native Provider v3 is now available. To upgrade to v3 and take advantages of the smaller, streamlined SDKs, there are a few changes you may need to make depending on your Pulumi programs.

    Upgrade Steps

    Prerequisites

    We recommend upgrading to the latest version of the v2 provider as a prerequisite to the v3 upgrade. This will enable you to resolve any pre-existing deprecated versions or resource structure changes.

    Review your program for warnings on missing imports or deprecated resources. If your program uses any deprecated explicit API versions where the import contains the API version, you will need to update these since explicit API versions are no longer included in the SDK. It’s recommnded to migrate to the default version, if possible, or you can generate a local SDK for the desired API version as described in the version guide.

    Upgrade Dependencies

    In your Pulumi program, upgrade the package to point to the latest v3.x version.

    -"@pulumi/azure-native": "^2.0.0",
    - "resolved": "https://registry.npmjs.org/@pulumi/azure-native/-/azure-native-2.89.3.tgz",
    - "resolved": "https://registry.npmjs.org/@pulumi/azure-native/-/azure-native-2.89.3.tgz",
    + @pulumi/azure-native": "v3.0.0",
    + "resolved": "https://registry.npmjs.org/@pulumi/azure-native/-/azure-native-3.0.0.tgz",
    + "resolved": "https://registry.npmjs.org/@pulumi/azure-native/-/azure-native-3.0.0.tgz",
    
    - pulumi_azure_native==v2.89.3
    + pulumi_azure_native==v3.0.0
    
    - <PackageReference Include="Pulumi.AzureNative" Version="2.89.3"
    + <PackageReference Include="Pulumi.AzureNative" Version="3.0.0"
    
    - github.com/pulumi/pulumi-azure-native-sdk/storage v2.89.3
    + github.com/pulumi/pulumi-azure-native-sdk/v3/storage v3.0.0
    

    Upgrade Imports

    Go programs will need all imports updated to include v3 in the path.

    import (
    - "github.com/pulumi/pulumi-azure-native-sdk/resources"
    - "github.com/pulumi/pulumi-azure-native-sdk/storage"
    + "github.com/pulumi/pulumi-azure-native-sdk/resources/v3"
    + "github.com/pulumi/pulumi-azure-native-sdk/storage/v3"
    )
    

    If you do not replace the deprecated import, you can expect to see an error message:

        error: Running program '<path/to/project>' failed with an unhandled exception:
    Error: Cannot find module '@pulumi/azure-native/resources/v20210501'
    

    Review Pulumi Diff

    After updating all imports to reflect v3 included Azure API versions, run pulumi preview and review the output.

    Pending Changes on Default Versions

    You may see pending changes when using the default version as the shape of the resource may have changed. You can choose to accept the changes, update your program to modify the resource properties to mitigate changes, or choose an explicit version which is compatible with the older version of the resource.

    A full list of default version changes can be found in the top-level resource versions.

    To continue using the previous Azure API version of a resource:

    1. Check the documentation in your IDE or our registry API docs which identifies the previous version for each resource. For example: Azure REST API Version: 2024-10-01. Prior API version in Azure Native 2.x: 2023-05-01.
    2. Generate and use the local SDK for the previous version of the resource as described in the version guide.

    TODO,tkappler list breaking changes

    MySQL and PostgreSQL Server and Flexible Server

    TODO,tkappler

    - import * as mysqldb from "@pulumi/azure-native/dbformysql"
    + import * as mysqldb from "@pulumi/azure-native/dbformysql/v20171201"
    
    - import * as postgresqldb from "@pulumi/azure-native/dbforpostgresql"
    + import * as postgresqldb from "@pulumi/azure-native/dbforpostgresql/v20171201"
    
    - from pulumi_azure_native import dbformysql
    + from pulumi_azure_native.dbformysql import v20171201 as dbformysql
    
    - from pulumi_azure_native import dbforpostgresql
    + from pulumi_azure_native.dbforpostgresql import v20171201 as dbforpostgresql
    
    - using MySQLDB = Pulumi.AzureNative.DBforMySQL;
    + using MySQLDB = Pulumi.AzureNative.DBforMySQL.V20171201;
    
    - using PostgreSQLDB = Pulumi.AzureNative.DBforPostgreSQL;
    + using PostgreSQLDB = Pulumi.AzureNative.DBforPostgreSQL.V20171201;
    
    - import mysqldb "github.com/pulumi/pulumi-azure-native-sdk/dbformysql"
    + import mysqldb "github.com/pulumi/pulumi-azure-native-sdk/dbformysql/v2/v20200601"
    
    - import postgresqldb "github.com/pulumi/pulumi-azure-native-sdk/dbforpostgresql"
    + import postgresqldb "github.com/pulumi/pulumi-azure-native-sdk/dbforpostgresql/v2/20171201"
    
    - type: azure-native:dbformysql:Server
    + type: azure-native:dbformysql/v20171201:Server
    
    - type: azure-native:dbforpostgresql:Server
    + type: azure-native:dbforpostgresql/v20171201:Server
    

    Contributing

    If you experience any unexpected issues during your migration or would like to contribute to our codebase, please visit our respository to open an issue or submit a pull request.

    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.89.1 published on Sunday, Mar 2, 2025 by Pulumi