Skip to content
This repository was archived by the owner on Mar 11, 2023. It is now read-only.

Commit 2ec570d

Browse files
committed
examples: update to latest pulumi version
1 parent bed3b04 commit 2ec570d

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

examples/aws-nodejs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"@types/node": "^10.0.0"
55
},
66
"dependencies": {
7-
"@pulumi/aws": "^4.17.0",
8-
"@pulumi/pulumi": "^3.21.0",
7+
"@pulumi/aws": "^5.25.0",
8+
"@pulumi/pulumi": "^3.50.2",
99
"@materializeinc/pulumi-docker-buildkit": "file:../../sdk/nodejs"
1010
}
1111
}

examples/aws-python/__main__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ def get_registry_info(registry_id):
1414
)
1515

1616

17-
repo = aws.ecr.Repository("repo")
17+
repo = aws.ecr.Repository(
18+
"repo",
19+
force_delete=True,
20+
)
1821
image = docker_buildkit.Image(
1922
"image",
2023
name=repo.repository_url,
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pulumi==3.21.0
2-
pulumi-aws==4.17.0
1+
pulumi==3.50.2
2+
pulumi-aws==5.25.0
33
-e file:../../sdk/python

0 commit comments

Comments
 (0)