Hey there, if I make a stack which contains a buck...
# help
d
Hey there, if I make a stack which contains a bucket instantiated as
Bucket.fromBucketName
/
Bucket.fromBucketArn
will that create a new bucket in my account or will it just create the bucket construct in memory during synth for what i'm doing in the stack?
t
it will not create a new bucket, at synth time it'll put a placeholder there and when cfn is doing its thing it'll lookup your bucket
d
Ayyy, thanks for that info