Skip to content

Commit 195edb1

Browse files
authored
Merge branch 'master' into gotypeTemplate
2 parents 9abab07 + 6fc9bba commit 195edb1

File tree

5 files changed

+568
-270
lines changed

5 files changed

+568
-270
lines changed

docs/resources/file_filesystem.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ page_title: "Scaleway: scaleway_file_filesystem"
55

66
# Resource: scaleway_file_filesystem
77

8-
Creates and manages a Scaleway File Storage (NFS) filesystem in a specific region. A filesystem is a scalable storage resource that can be mounted on Compute instances and is typically used for shared, persistent storage.
8+
-> **This product is currently in private beta. To request access, please contact your Technical Account Manager.**
9+
10+
Creates and manages a Scaleway File Storage filesystem in a specific region. A filesystem is a scalable storage resource that can be mounted on Compute instances and is typically used for share persistent storage between multiple instances (RWX).
911

1012
This resource allows you to define and manage the size, tags, and region of a filesystem, and track its creation and update timestamps, current status, and number of active attachments.
1113

internal/services/mongodb/snapshot_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func TestAccMongoDBSnapshot_Basic(t *testing.T) {
3535
resource "scaleway_mongodb_snapshot" "main" {
3636
instance_id = scaleway_mongodb_instance.main.id
3737
name = "test-snapshot"
38-
expires_at = "2025-12-31T23:59:59Z"
38+
expires_at = "2026-06-30T23:59:59Z"
3939
}
4040
`,
4141
Check: resource.ComposeTestCheckFunc(
@@ -69,11 +69,11 @@ func TestAccMongoDBSnapshot_Update(t *testing.T) {
6969
resource "scaleway_mongodb_snapshot" "main" {
7070
instance_id = scaleway_mongodb_instance.main.id
7171
name = "test-snapshot"
72-
expires_at = "2025-12-31T23:59:59Z"
72+
expires_at = "2026-06-30T23:59:59Z"
7373
}
7474
`,
7575
Check: resource.ComposeTestCheckFunc(
76-
resource.TestCheckResourceAttr("scaleway_mongodb_snapshot.main", "expires_at", "2025-12-31T23:59:59Z"),
76+
resource.TestCheckResourceAttr("scaleway_mongodb_snapshot.main", "expires_at", "2026-06-30T23:59:59Z"),
7777
),
7878
},
7979
{
@@ -90,12 +90,12 @@ func TestAccMongoDBSnapshot_Update(t *testing.T) {
9090
resource "scaleway_mongodb_snapshot" "main" {
9191
instance_id = scaleway_mongodb_instance.main.id
9292
name = "updated-snapshot"
93-
expires_at = "2025-09-20T23:59:59Z"
93+
expires_at = "2026-06-30T23:59:59Z"
9494
}
9595
`,
9696
Check: resource.ComposeTestCheckFunc(
9797
resource.TestCheckResourceAttr("scaleway_mongodb_snapshot.main", "name", "updated-snapshot"),
98-
resource.TestCheckResourceAttr("scaleway_mongodb_snapshot.main", "expires_at", "2025-09-20T23:59:59Z"),
98+
resource.TestCheckResourceAttr("scaleway_mongodb_snapshot.main", "expires_at", "2026-06-30T23:59:59Z"),
9999
),
100100
},
101101
},

0 commit comments

Comments
 (0)