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
|
||||
```
|
||||
|
6
main.tf
6
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,12 +102,12 @@ 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)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
## GET VM PUBLIC IP
|
||||
output "Web-server-URL" {
|
||||
value = join("",["http://",google_compute_instance.default.network_interface.0.access_config.0.nat_ip,":5000"])
|
||||
value = join("", ["http://", google_compute_instance.default.network_interface.0.access_config.0.nat_ip, ":5000"])
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user