Skip to content

Commit f196bc0

Browse files
committed
doc updated
1 parent cf8db70 commit f196bc0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/resources/rdb_snapshot.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ resource "scaleway_rdb_snapshot" "snapshot_with_expiration" {
4747
### Example with Multiple Snapshots
4848

4949
```terraform
50-
resource "scaleway_rdb_snapshot" "daily_snapshot" {
51-
name = "daily-backup"
50+
resource "scaleway_rdb_snapshot" "snapshot_a" {
51+
name = "snapshot_a"
5252
instance_id = scaleway_rdb_instance.main.id
5353
depends_on = [scaleway_rdb_instance.main]
5454
}
5555
56-
resource "scaleway_rdb_snapshot" "weekly_snapshot" {
57-
name = "weekly-backup"
56+
resource "scaleway_rdb_snapshot" "snapshot_b" {
57+
name = "snapshot_b"
5858
instance_id = scaleway_rdb_instance.main.id
5959
expires_at = "2025-02-07T00:00:00Z"
6060
depends_on = [scaleway_rdb_instance.main]

0 commit comments

Comments
 (0)