pulumi/tests/integration/large_resource/python/__main__.py

8 lines
162 B
Python

import pulumi
# Create a very long string (>4mb)
long_string = "a" * 5 * 1024 * 1025
# Export the name of the bucket
pulumi.export("long_string", long_string)