forked from pierront/but3-iac
22 lines
348 B
HCL
22 lines
348 B
HCL
resource "google_compute_instance" "frontend"{
|
|
name = "ma-frontend"
|
|
|
|
boot_disk{
|
|
initialize_params {
|
|
image = "debian-11"
|
|
size = 10
|
|
}
|
|
}
|
|
|
|
network_interface {
|
|
access_config {}
|
|
subnetwork = google_compute_subnetwork.frontend.id
|
|
}
|
|
|
|
tags = ["frontend", "ssh"]
|
|
|
|
metadata = {
|
|
enable-oslogin = "TRUE"
|
|
}
|
|
}
|