* Rename the provider to dockerbuild. * Add Makefile targets required by CI. * Add per-language test targets compatible with CI. * Fix broken example yaml. * Add gitignore exclusions to fix SDK generation in CI. * Fix lint errors. * Vendor pulumi CLI via `tools.go` instead of `.pulumi`. * Consolidate `go.mod`s into one file, with a minimal `go.mod` for the Go SDK. * Add codecov.
6 lines
177 B
Python
6 lines
177 B
Python
import pulumi
|
|
import pulumi_dockerbuild as dockerbuild
|
|
|
|
my_random_resource = dockerbuild.Random("myRandomResource", length=24)
|
|
pulumi.export("value", my_random_resource.result)
|