You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Terraform module to provision an EBS snapshot builder state machine on AWS.
Usage
See examples directory for working examples to reference:
module"ebs_snapshot_builder" {
source="clowdhaus/ebs-snapshot-builder/aws"name="example"# Images to cachepublic_images=[
"nvcr.io/nvidia/k8s-device-plugin:v0.16.2", # 120 MB compressed / 351 MB decompressed"nvcr.io/nvidia/pytorch:24.08-py3", # 9.5 GB compressed / 20.4 GB decompressed
]
# AZs where EBS fast snapshot restore will be enabledfsr_availability_zone_names=["us-east-1a", "us-east-1b", "us-east-1c"]
vpc_id="vpc-1234556abcdef"subnet_id="subnet-abcde012"tags={
Terraform ="true"
Environment ="dev"
}
}
Examples
Examples codified under the examples are intended to give users references for how to use the module(s) as well as testing/validating changes to the source code of the module. If contributing to the project, please be sure to make any appropriate updates to the relevant examples to allow maintainers to test your changes and to keep the examples up to date for users. Thank you!