Hello, I was trying to set up lock file with using...
# getting-started
h
Hello, I was trying to set up lock file with using S3 as my state file location, similar to Terraform S3 + DynamoDB, but I am not finding any obvious documentation. Can somebody point me at the right direction please?
g
Locks are saved on S3 https://www.pulumi.com/docs/concepts/state/
Inside the
.pulumi
folder, we access the following subdirectories:
3. `locks/`: Optional lock files for each stack if the stack is currently being operated on by a Pulumi operation (e.g.
dev/$lock.json
or
proj/dev/$lock.json
where
$lock
is a unique identifier for the lock).
h
Thank you for that. I was just looking for an identical one for one equivalent from the terraform world.