init pulumi deployment

pulumi-deployment
bdeshi 1 year ago
parent 49222954fc
commit e5bf481f36
Signed by: bdeshi
GPG Key ID: 410D03DA9A3468E0

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

@ -0,0 +1,3 @@
encryptionsalt: v1:EBt7XMI0UPg=:v1:wn40IkICpj0/A/Vf:1GWu7mleso0URPtVWBTunpTZKXzZdg==
config:
aws:region: us-east-1

@ -0,0 +1,6 @@
name: resume-manpage
runtime:
name: python
options:
virtualenv: venv
description: a manpage resume site deployed on AWS

@ -0,0 +1,11 @@
"""An AWS Python Pulumi program"""
import pulumi
from pulumi_aws import s3
from pulumi_aws import cloudfront
# Create an AWS resource (S3 Bucket)
bucket = s3.Bucket('my-bucket')
# Export the name of the bucket
pulumi.export('bucket_name', bucket.id)

@ -0,0 +1,2 @@
pulumi>=3.0.0,<4.0.0
pulumi-aws>=5.0.0,<6.0.0
Loading…
Cancel
Save