We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf8db70 commit f196bc0Copy full SHA for f196bc0
docs/resources/rdb_snapshot.md
@@ -47,14 +47,14 @@ resource "scaleway_rdb_snapshot" "snapshot_with_expiration" {
47
### Example with Multiple Snapshots
48
49
```terraform
50
-resource "scaleway_rdb_snapshot" "daily_snapshot" {
51
- name = "daily-backup"
+resource "scaleway_rdb_snapshot" "snapshot_a" {
+ name = "snapshot_a"
52
instance_id = scaleway_rdb_instance.main.id
53
depends_on = [scaleway_rdb_instance.main]
54
}
55
56
-resource "scaleway_rdb_snapshot" "weekly_snapshot" {
57
- name = "weekly-backup"
+resource "scaleway_rdb_snapshot" "snapshot_b" {
+ name = "snapshot_b"
58
59
expires_at = "2025-02-07T00:00:00Z"
60
0 commit comments