diff --git a/provider/cmd/pulumi-resource-azure-native/schema.json b/provider/cmd/pulumi-resource-azure-native/schema.json index da590fc895d1..6ad45c3dfcd3 100644 --- a/provider/cmd/pulumi-resource-azure-native/schema.json +++ b/provider/cmd/pulumi-resource-azure-native/schema.json @@ -1044,7 +1044,7 @@ }, "readme": "The native Azure provider package offers support for all Azure Resource Manager (ARM)\nresources and their properties. Resources are exposed as types from modules based on Azure Resource\nProviders such as 'compute', 'network', 'storage', and 'web', among many others. Using this package\nallows you to programmatically declare instances of any Azure resource and any supported resource\nversion using infrastructure as code, which Pulumi then uses to drive the ARM API.", "requires": { - "pulumi": "\u003e=3.35.0,\u003c4.0.0" + "pulumi": "\u003e=3.134.1,\u003c4.0.0" }, "respectSchemaVersion": true, "usesIOClasses": true diff --git a/provider/pkg/gen/__snapshots__/gen_vnet_test.snap b/provider/pkg/gen/__snapshots__/gen_vnet_test.snap index d753799ee59d..93c0110d28c7 100755 --- a/provider/pkg/gen/__snapshots__/gen_vnet_test.snap +++ b/provider/pkg/gen/__snapshots__/gen_vnet_test.snap @@ -10991,7 +10991,7 @@ }, "readme": "The native Azure provider package offers support for all Azure Resource Manager (ARM)\nresources and their properties. Resources are exposed as types from modules based on Azure Resource\nProviders such as 'compute', 'network', 'storage', and 'web', among many others. Using this package\nallows you to programmatically declare instances of any Azure resource and any supported resource\nversion using infrastructure as code, which Pulumi then uses to drive the ARM API.", "requires": { - "pulumi": "\u003e=3.35.0,\u003c4.0.0" + "pulumi": "\u003e=3.134.1,\u003c4.0.0" }, "respectSchemaVersion": true, "usesIOClasses": true diff --git a/provider/pkg/gen/schema.go b/provider/pkg/gen/schema.go index d0adda93f751..49486fff23d4 100644 --- a/provider/pkg/gen/schema.go +++ b/provider/pkg/gen/schema.go @@ -372,7 +372,7 @@ version using infrastructure as code, which Pulumi then uses to drive the ARM AP pkg.Language["python"] = rawMessage(map[string]interface{}{ "moduleNameOverrides": pythonModuleNames, "requires": map[string]string{ - "pulumi": ">=3.35.0,<4.0.0", + "pulumi": ">=3.134.1,<4.0.0", }, "usesIOClasses": true, "inputTypes": "classes-and-dicts", diff --git a/sdk/python/pyproject.toml b/sdk/python/pyproject.toml index 12581d6542e1..b31fd5348487 100644 --- a/sdk/python/pyproject.toml +++ b/sdk/python/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "pulumi_azure_native" description = "A native Pulumi package for creating and managing Azure resources." - dependencies = ["parver>=0.2.1", "pulumi>=3.35.0,<4.0.0", "semver>=2.8.1", "typing-extensions>=4.11; python_version < \"3.11\""] + dependencies = ["parver>=0.2.1", "pulumi>=3.134.1,<4.0.0", "semver>=2.8.1", "typing-extensions>=4.11; python_version < \"3.11\""] keywords = ["pulumi", "azure", "azure-native", "category/cloud", "kind/native"] readme = "README.md" requires-python = ">=3.8"