correction README.md
This commit is contained in:
parent
5aaf23e181
commit
ad84c675f4
@ -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
|
||||
```
|
||||
|
4
main.tf
4
main.tf
@ -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)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user