I’m wondering why this consistently fails the firs...
# python
l
I’m wondering why this consistently fails the first time and succeeds the second time (update instead of create, but still):
Copy code
➜ cat __main__.py
from pulumi_aws import ec2, s3

vpc = ec2.Vpc('new-vpc', cidr_block = '10.0.0.0/16'),
bucket = s3.Bucket('new-bucket',
        tags = {'Name': 'infra bucket (front-back-multi-az)', 'Creator': 'timc'})