correction README.md

This commit is contained in:
greglebreton 2023-03-19 23:39:18 +01:00
parent 5aaf23e181
commit ad84c675f4
4 changed files with 33 additions and 33 deletions

View File

@ -45,12 +45,12 @@ ssh-keygen -t rsa -b 4096
## UTILISATION
- Lançer Terraform:
- Initialiser Terraform:
```bash
terraform init
```
- Lançer Terraform:
- Dry run:
```bash
terraform plan
```

View File

@ -86,7 +86,7 @@ resource "google_compute_instance" "default" {
type = "ssh"
user = var.gcp_ssh_user
timeout = "500s"
private_key = "${file(var.gcp_ssh_priv_key_file)}"
private_key = file(var.gcp_ssh_priv_key_file)
}
}
@ -102,7 +102,7 @@ resource "google_compute_instance" "default" {
type = "ssh"
user = var.gcp_ssh_user
timeout = "500s"
private_key = "${file(var.gcp_ssh_priv_key_file)}"
private_key = file(var.gcp_ssh_priv_key_file)
}
}
}