Initial commit

This commit is contained in:
Bryce Lampe
2024-03-07 11:17:15 -08:00
committed by GitHub
commit 0d9ce7c53c
70 changed files with 4168 additions and 0 deletions

2
examples/python/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
*.pyc
venv/

View File

@@ -0,0 +1,6 @@
name: provider-xyz-native
runtime: python
plugins:
providers:
- name: xyz
path: ../../bin

View File

@@ -0,0 +1,7 @@
import pulumi
import pulumi_xyz as xyz
my_random_resource = xyz.Random("myRandomResource", length=24)
pulumi.export("output", {
"value": my_random_resource.result,
})

View File

@@ -0,0 +1,2 @@
pulumi>=3.0.0,<4.0.0
pulumi-xyz==0.0.1-alpha.1699945013+97b0e04c