Skip to content

Commit

Permalink
Update readme with defaults (resolve pre-commit error)
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-stroud committed Jul 26, 2024
1 parent 7cbfb54 commit e760395
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ limitations under the License.
| <a name="input_bucket_name"></a> [bucket\_name](#input\_bucket\_name) | Name of GCS bucket.<br>Ignored when 'create\_bucket' is true. | `string` | `null` | no |
| <a name="input_can_ip_forward"></a> [can\_ip\_forward](#input\_can\_ip\_forward) | Enable IP forwarding, for NAT instances for example. | `bool` | `false` | no |
| <a name="input_cgroup_conf_tpl"></a> [cgroup\_conf\_tpl](#input\_cgroup\_conf\_tpl) | Slurm cgroup.conf template file path. | `string` | `null` | no |
| <a name="input_cloud_parameters"></a> [cloud\_parameters](#input\_cloud\_parameters) | cloud.conf options. Defaults inherited from [Slurm GCP repo](https://github.com/GoogleCloudPlatform/slurm-gcp/blob/master/terraform/slurm_cluster/modules/slurm_files/README_TF.md#input_cloud_parameters) | <pre>object({<br> no_comma_params = optional(bool)<br> resume_rate = optional(number)<br> resume_timeout = optional(number)<br> suspend_rate = optional(number)<br> suspend_timeout = optional(number)<br> topology_plugin = optional(string)<br> tree_width = optional(number, 128)<br> })</pre> | `{}` | no |
| <a name="input_cloud_parameters"></a> [cloud\_parameters](#input\_cloud\_parameters) | cloud.conf options. Defaults inherited from [Slurm GCP repo](https://github.com/GoogleCloudPlatform/slurm-gcp/blob/master/terraform/slurm_cluster/modules/slurm_files/README_TF.md#input_cloud_parameters) | <pre>object({<br> no_comma_params = optional(bool, false)<br> resume_rate = optional(number, 0)<br> resume_timeout = optional(number, 300)<br> suspend_rate = optional(number, 0)<br> suspend_timeout = optional(number, 300)<br> topology_plugin = optional(string, "topology/tree")<br> tree_width = optional(number, 128)<br> })</pre> | `{}` | no |
| <a name="input_cloudsql"></a> [cloudsql](#input\_cloudsql) | Use this database instead of the one on the controller.<br> server\_ip : Address of the database server.<br> user : The user to access the database as.<br> password : The password, given the user, to access the given database. (sensitive)<br> db\_name : The database to access. | <pre>object({<br> server_ip = string<br> user = string<br> password = string # sensitive<br> db_name = string<br> })</pre> | `null` | no |
| <a name="input_compute_startup_script"></a> [compute\_startup\_script](#input\_compute\_startup\_script) | Startup script used by the compute VMs. | `string` | `"# no-op"` | no |
| <a name="input_compute_startup_scripts_timeout"></a> [compute\_startup\_scripts\_timeout](#input\_compute\_startup\_scripts\_timeout) | The timeout (seconds) applied to each script in compute\_startup\_scripts. If<br>any script exceeds this timeout, then the instance setup process is considered<br>failed and handled accordingly.<br><br>NOTE: When set to 0, the timeout is considered infinite and thus disabled. | `number` | `300` | no |
Expand Down

0 comments on commit e760395

Please sign in to comment.