Skip to content

Commit e71b9dd

Browse files
committed
lint
1 parent 66f9413 commit e71b9dd

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

registry/mavrickrishi/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
2-
name: mavrickrishi
3-
description: Modules and templates by mavrickrishi
4-
github_url: https://github.com/MAVRICK-1
2+
display_name: "mavrickrishi"
3+
description: "Modules and templates by mavrickrishi"
4+
github_url: "https://github.com/MAVRICK-1"
5+
status: "community"
56
---
67

78
# mavrickrishi

registry/mavrickrishi/modules/aws-ami-snapshot/README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
display_name: AWS AMI Snapshot
33
description: Create and manage AMI snapshots for Coder workspaces with restore capabilities
4-
icon: ../../../../../../.icons/aws.svg
4+
icon: ../../../../.icons/aws.svg
55
maintainer_github: MAVRICK-1
66
verified: false
77
tags: [aws, snapshot, ami, backup, persistence]
@@ -11,6 +11,17 @@ tags: [aws, snapshot, ami, backup, persistence]
1111

1212
This module provides AMI-based snapshot functionality for Coder workspaces running on AWS EC2 instances. It enables users to create snapshots when workspaces are stopped and restore from previous snapshots when starting workspaces.
1313

14+
```tf
15+
module "ami_snapshot" {
16+
source = "registry.coder.com/mavrickrishi/aws-ami-snapshot/coder"
17+
version = "1.0.0"
18+
19+
instance_id = aws_instance.workspace.id
20+
default_ami_id = data.aws_ami.ubuntu.id
21+
template_name = "aws-linux"
22+
}
23+
```
24+
1425
## Features
1526

1627
- **Automatic Snapshots**: Create AMI snapshots when workspaces are stopped

0 commit comments

Comments
 (0)