mirror of https://github.com/pulumi/pulumi.git
33 lines
796 B
Python
33 lines
796 B
Python
# Copyright 2016-2020, Pulumi Corporation. All rights reserved.
|
|
|
|
"""An example program that should be Pylint clean"""
|
|
|
|
import binascii
|
|
import os
|
|
import pulumi
|
|
from pulumi.dynamic import Resource, ResourceProvider, CreateResult
|
|
|
|
|
|
class RandomResourceProvider(ResourceProvider):
|
|
"""Random resource provider."""
|
|
|
|
def create(self, props):
|
|
val = binascii.b2a_hex(os.urandom(15)).decode("ascii")
|
|
return CreateResult(val, {"val": val})
|
|
|
|
|
|
class Random(Resource):
|
|
"""Random resource."""
|
|
val: str
|
|
|
|
def __init__(self, name, opts=None):
|
|
super().__init__(RandomResourceProvider(), name, {"val": ""}, opts)
|
|
|
|
|
|
r = Random("foo")
|
|
|
|
pulumi.export("cwd", os.getcwd())
|
|
pulumi.export("random_urn", r.urn)
|
|
pulumi.export("random_id", r.id)
|
|
pulumi.export("random_val", r.val)
|