From cc46cffb168e0fe4d909c94db97ef2af47633287 Mon Sep 17 00:00:00 2001 From: Idriss Neumann Date: Mon, 16 Sep 2024 09:20:30 +0100 Subject: [PATCH] fix(migration-guide-python): document breaking change (issue #194) (#228) --- docs/how-to-guides/migration-from-lbrlabs-package.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/how-to-guides/migration-from-lbrlabs-package.md b/docs/how-to-guides/migration-from-lbrlabs-package.md index 8b8318ef..d0ab1809 100644 --- a/docs/how-to-guides/migration-from-lbrlabs-package.md +++ b/docs/how-to-guides/migration-from-lbrlabs-package.md @@ -44,6 +44,13 @@ After switching the package, update the import statements in your Pulumi infrast + import pulumi_ovh as ovh ``` +Some package has changed, and you'll have to update it as well, for example: + +```diff +- ovh.DomainZoneRecord ++ ovh.domain.ZoneRecord +``` + {{% /choosable %}} {{% choosable language go %}}