-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Basic SLURM running in CLASS-HPC-GCP project
- Loading branch information
1 parent
5d7f339
commit 4c00201
Showing
4 changed files
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,3 +3,4 @@ terraform.tfstate.backup | |
| .terraform.lock.hcl | ||
| credentials.gcp | ||
| local* | ||
| .terraform/ | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,10 @@ | ||
| .PHONY: plan apply destroy | ||
|
|
||
| plan: | ||
| terraform plan -var-file=basic.tfvars -out terraform.tfplan | ||
| terraform plan -var-file=basic.tfvars -var-file=local.tfvars -out terraform.tfplan | ||
|
|
||
| apply: | ||
| terraform apply -var-file=basic.tfvars -auto-approve | ||
| terraform apply -var-file=basic.tfvars -var-file=local.tfvars -auto-approve | ||
|
|
||
| destroy: | ||
| terraform destroy -var-file=basic.tfvars -auto-approve | ||
| terraform destroy -var-file=basic.tfvars -var-file=local.tfvars -auto-approve |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| project = "<project>" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters