Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions modules/file-system/filestore/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ We recommend considering enabling [Filestore deletion protection][fdp]. Deletion
protection will prevent unintentional deletion of an entire Filestore instance.
It does not prevent deletion of files within the Filestore instance when mounted
by a VM. It is not available on some [tiers](#filestore-tiers), including the
default BASIC\_HDD tier or BASIC\_SSD tier. Follow the documentation link for
default BASIC\_SSD tier or BASIC\_HDD tier. Follow the documentation link for
up to date details.

Usage can be enabled in a blueprint with, for example:
Expand Down Expand Up @@ -99,11 +99,11 @@ tier, [make a request and wait for it to be approved][hs-ssd-quota].

[hs-ssd-quota]: https://cloud.google.com/filestore/docs/high-scale

### Example - Basic HDD
### Example - Basic SSD

The Filestore instance defined below will have the following attributes:

- (default) `BASIC_HDD` tier
- (default) `BASIC_SSD` tier
- (default) 1TiB capacity
- `homefs` module ID
- mount point at `/home`
Expand Down Expand Up @@ -221,7 +221,7 @@ No modules.
| <a name="input_deployment_name"></a> [deployment\_name](#input\_deployment\_name) | Name of the HPC deployment, used as name of the filestore instance if no name is specified. | `string` | n/a | yes |
| <a name="input_description"></a> [description](#input\_description) | A description of the filestore instance. | `string` | `""` | no |
| <a name="input_filestore_share_name"></a> [filestore\_share\_name](#input\_filestore\_share\_name) | Name of the file system share on the instance. | `string` | `"nfsshare"` | no |
| <a name="input_filestore_tier"></a> [filestore\_tier](#input\_filestore\_tier) | The service tier of the instance. | `string` | `"BASIC_HDD"` | no |
| <a name="input_filestore_tier"></a> [filestore\_tier](#input\_filestore\_tier) | The service tier of the instance. | `string` | `"BASIC_SSD"` | no |
| <a name="input_labels"></a> [labels](#input\_labels) | Labels to add to the filestore instance. Key-value pairs. | `map(string)` | n/a | yes |
| <a name="input_local_mount"></a> [local\_mount](#input\_local\_mount) | Mountpoint for this filestore instance. Note: If set to the same as the `filestore_share_name`, it will trigger a known Slurm bug ([troubleshooting](../../../docs/slurm-troubleshooting.md)). | `string` | `"/shared"` | no |
| <a name="input_mount_options"></a> [mount\_options](#input\_mount\_options) | NFS mount options to mount file system. | `string` | `"defaults,_netdev"` | no |
Expand Down
2 changes: 1 addition & 1 deletion modules/file-system/filestore/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ variable "size_gb" {
variable "filestore_tier" {
description = "The service tier of the instance."
type = string
default = "BASIC_HDD"
default = "BASIC_SSD"
validation {
condition = var.filestore_tier != "STANDARD"
error_message = "The preferred name for STANDARD tier is now BASIC_HDD\nhttps://cloud.google.com/filestore/docs/reference/rest/v1beta1/Tier."
Expand Down
Loading