Skip to content

Commit 1d36f67

Browse files
Changed "Crusoe Cloud" to "Crusoe" in the backend documentation for consistency.
1 parent 733a17c commit 1d36f67

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/docs/concepts/backends.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -929,9 +929,9 @@ projects:
929929
* `sizes` - read
930930
* `ssh_key` - create, read, update,delete
931931

932-
### Crusoe Cloud
932+
### Crusoe
933933

934-
Log into your [Crusoe Cloud](https://console.crusoecloud.com/) console and create an API key
934+
Log into your [Crusoe](https://console.crusoecloud.com/) console and create an API key
935935
under your account settings. Note your project ID from the project settings page.
936936

937937
Then, go ahead and configure the backend:

src/dstack/_internal/core/backends/crusoe/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class CrusoeBackendConfig(CoreModel):
2222
Literal["crusoe"],
2323
Field(description="The type of backend"),
2424
] = "crusoe"
25-
project_id: Annotated[str, Field(description="The Crusoe Cloud project ID")]
25+
project_id: Annotated[str, Field(description="The Crusoe project ID")]
2626
regions: Annotated[
2727
Optional[List[str]],
2828
Field(description="The list of allowed Crusoe regions. Omit to use all regions"),

src/dstack/_internal/core/models/backends/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class BackendType(str, enum.Enum):
88
AWS (BackendType): Amazon Web Services
99
AZURE (BackendType): Microsoft Azure
1010
CLOUDRIFT (BackendType): CloudRift
11-
CRUSOE (BackendType): Crusoe Cloud
11+
CRUSOE (BackendType): Crusoe
1212
CUDO (BackendType): Cudo
1313
DATACRUNCH (BackendType): DataCrunch (for backward compatibility)
1414
DIGITALOCEAN (BackendType): DigitalOcean

0 commit comments

Comments
 (0)