Python Pulumi AWS S3: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
=Internal= | =Internal= | ||
* [[ | * [[Pulumi_Programming_Model#Other_Code_Examples|Pulumi Programming Model | Code Examples]] | ||
=Overview= | =Overview= |
Latest revision as of 01:00, 15 April 2022
Internal
Overview
import pulumi
from pulumi_aws import s3
bucket = s3.Bucket('experimental-ovidiu')
object = s3.BucketObject(
"test.txt",
bucket=bucket.id,
source=pulumi.FileAsset('./test.txt')
)
pulumi.export("bucket_name", bucket.id)