Is there a way to restore EBS volume from snapshot using AWS CLI or CloudFormation?
Asked
Active
Viewed 229 times
-1
-
Welcome to stackoverflow - please review the [guidelines on how to ask questions](https://stackoverflow.com/help/how-to-ask) – Matthew Hegarty Oct 31 '20 at 13:05
1 Answers
0
In CloudFormation you have SnapshotId:
The snapshot from which to create the volume. You must specify either a snapshot ID or a volume size.
In CLI you have create-volume where you can specify --snapshot-id
.